Nextras\Orm\Repository\IRepository::findAll PHP Méthode

findAll() public méthode

Returns entity collection with all entities.
public findAll ( ) : Nextras\Orm\Collection\ICollection
Résultat Nextras\Orm\Collection\ICollection
    public function findAll();

Usage Example

Exemple #1
0
 protected function createComponentPagination() : Ytnuk\Orm\Pagination\Control
 {
     if (!$this->repository) {
         $this->error();
     }
     return new Ytnuk\Orm\Pagination\Control($this->repository->findAll(), self::ITEMS_PER_PAGE);
 }
All Usage Examples Of Nextras\Orm\Repository\IRepository::findAll