Nextras\Orm\Repository\IRepository::findAll PHP 메소드

findAll() 공개 메소드

Returns entity collection with all entities.
public findAll ( ) : Nextras\Orm\Collection\ICollection
리턴 Nextras\Orm\Collection\ICollection
    public function findAll();

Usage Example

예제 #1
0
파일: Presenter.php 프로젝트: ytnuk/sitemap
 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