選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

26 行
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. }