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.

ReductionCartRepositoryQuery.php 697B

3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
123456789101112131415161718192021222324
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Reduction;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\CaracoleBundle\Repository\MerchantRepositoryQueryTrait;
  5. use Lc\SovBundle\Repository\AbstractRepositoryQuery;
  6. class ReductionCartRepositoryQuery extends AbstractRepositoryQuery
  7. {
  8. use MerchantRepositoryQueryTrait;
  9. public function __construct(ReductionCartRepository $repository, PaginatorInterface $paginator)
  10. {
  11. parent::__construct($repository, 'reductionCart', $paginator);
  12. }
  13. public function filterByCode(string $code)
  14. {
  15. return $this
  16. ->andWhere('.codes LIKE :code')
  17. ->setParameter('code', '%'.$code.'%') ;
  18. }
  19. }