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.

UnitRepositoryQuery.php 380B

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