Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

23 lines
811B

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