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.

18 lines
488B

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