You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 satır
377B

  1. <?php
  2. namespace Lc\PietroBundle\Repository\Dream;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\PietroBundle\Repository\Search\SearchRepositoryQuery;
  5. class DreamRepositoryQuery extends SearchRepositoryQuery
  6. {
  7. public function __construct(DreamRepository $repository, PaginatorInterface $paginator)
  8. {
  9. parent::__construct($repository, $paginator);
  10. }
  11. }