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.

OrderReductionCreditRepositoryQuery.php 427B

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