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.

16 lines
478B

  1. <?php
  2. namespace App\Repository\CollectifData;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\SovBundle\Repository\AbstractRepositoryQuery;
  5. use Lc\SovBundle\Repository\RepositoryQueryInterface;
  6. class CollectifDataRepositoryQuery extends AbstractRepositoryQuery implements RepositoryQueryInterface
  7. {
  8. public function __construct(CollectifDataRepository $repository, PaginatorInterface $paginator)
  9. {
  10. parent::__construct($repository, 'r', $paginator);
  11. }
  12. }