|
- <?php
-
- namespace Lc\CaracoleBundle\Repository\Ticket;
-
- use Lc\CaracoleBundle\Model\Ticket\TicketInterface;
- use Lc\SovBundle\Repository\AbstractRepository;
-
- /**
- * @method TicketInterface|null find($id, $lockMode = null, $lockVersion = null)
- * @method TicketInterface|null findOneBy(array $criteria, array $orderBy = null)
- * @method TicketInterface[] findAll()
- * @method TicketInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
- */
- class TicketRepository extends AbstractRepository
- {
- public function getInterfaceClass()
- {
- return TicketInterface::class;
- }
-
-
- }
|