Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

IndividualDataRepositoryQuery.php 493B

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