Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }