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.

TicketRepository.php 864B

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