Horde_Kolab_Storage_Cache_Data::getDuplicates PHP 메소드

getDuplicates() 공개 메소드

Retrieves the list of object duplicates.
public getDuplicates ( ) : array
리턴 array The list of duplicates.
    public function getDuplicates()
    {
        return $this->_fetchCacheEntry(self::DUPLICATES);
    }

Usage Example

예제 #1
0
파일: Cached.php 프로젝트: Gomez/horde
 /**
  * Retrieve the list of object duplicates.
  *
  * @return array The list of duplicates.
  */
 public function getDuplicates()
 {
     $this->_init();
     return $this->_data_cache->getDuplicates();
 }