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.

FileRepositoryQuery.php 413B

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