Sulu\Bundle\CategoryBundle\Entity\CategoryRepositoryInterface::findCategoriesByIds PHP Method

findCategoriesByIds() public method

Returns an array of categories which are assigned to the given array of ids.
public findCategoriesByIds ( array $ids ) : Sulu\Bundle\CategoryBundle\Entity\CategoryInterface[]
$ids array
return Sulu\Bundle\CategoryBundle\Entity\CategoryInterface[]
    public function findCategoriesByIds(array $ids);

Usage Example

Exemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function findByIds(array $ids)
 {
     return $this->categoryRepository->findCategoriesByIds($ids);
 }
All Usage Examples Of Sulu\Bundle\CategoryBundle\Entity\CategoryRepositoryInterface::findCategoriesByIds