Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

PageRepositoryQuery.php 414B

il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
123456789101112131415
  1. <?php
  2. namespace Lc\SovBundle\Repository\Site;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\SovBundle\Repository\AbstractRepositoryQuery;
  5. class PageRepositoryQuery extends AbstractRepositoryQuery implements PageRepositoryQueryInterface
  6. {
  7. public function __construct(PageRepository $repository, PaginatorInterface $paginator)
  8. {
  9. parent::__construct($repository, 'page', $paginator);
  10. }
  11. }