Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

OrderPaymentRepository.php 755B

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