コード例 #1
0
 /**
  * {@inheritDoc}
  */
 public function findMany($className, array $ids)
 {
     return $this->wrapped->findMany($className, $ids);
 }
コード例 #2
0
 /**
  * Find many document by id
  *
  * The ids may either be PHPCR paths or UUID's, but all must be of the same type
  *
  * @param array $ids document ids
  *
  * @return array of document objects
  */
 public function findMany(array $ids)
 {
     return $this->dm->findMany($this->className, $ids);
 }