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.

26 satır
856B

  1. <?php
  2. namespace Lc\ShopBundle\Repository;
  3. use Lc\ShopBundle\Context\DefaultRepositoryInterface;
  4. use Lc\ShopBundle\Context\OrderReductionCartInterface;
  5. use Lc\ShopBundle\Context\OrderReductionCreditInterface;
  6. use Lc\ShopBundle\Context\OrderStatusInterface;
  7. /**
  8. * @method OrderReductionCartInterface|null find($id, $lockMode = null, $lockVersion = null)
  9. * @method OrderReductionCartInterface|null findOneBy(array $criteria, array $orderBy = null)
  10. * @method OrderReductionCartInterface[] findAll()
  11. * @method OrderReductionCartInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  12. */
  13. class OrderReductionCartRepository extends BaseRepository implements DefaultRepositoryInterface
  14. {
  15. public function getInterfaceClass()
  16. {
  17. return OrderReductionCartInterface::class;
  18. }
  19. }