You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 line
487B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Section;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\CaracoleBundle\Repository\MerchantRepositoryQueryTrait;
  5. use Lc\SovBundle\Repository\AbstractRepositoryQuery;
  6. class SectionRepositoryQuery extends AbstractRepositoryQuery
  7. {
  8. use MerchantRepositoryQueryTrait;
  9. public function __construct(SectionRepository $repository, PaginatorInterface $paginator)
  10. {
  11. parent::__construct($repository, 'r', $paginator);
  12. }
  13. }