getDuplicates() public method

Retrieves the list of object duplicates.
public getDuplicates ( ) : array
return array The list of duplicates.
示例#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();
 }