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

14 lines
300B

  1. <?php
  2. namespace App\Repository;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. class RevoltRepositoryQuery extends SearchRepositoryQuery
  5. {
  6. public function __construct(RevoltRepository $repository, PaginatorInterface $paginator)
  7. {
  8. parent::__construct($repository, $paginator);
  9. }
  10. }