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 lines
407B

  1. <?= "<?php\n" ?>
  2. namespace <?= $namespace_path; ?>\<?= $domain; ?>;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\SovBundle\Repository\AbstractRepositoryQuery;
  5. class <?= $class_name ?> extends AbstractRepositoryQuery
  6. {
  7. public function __construct(<?= $class_name_repository; ?> $repository, PaginatorInterface $paginator)
  8. {
  9. parent::__construct($repository, 'r', $paginator);
  10. }
  11. }