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.

20 lines
372B

  1. <?php
  2. namespace Lc\SovBundle\Factory\Ticket;
  3. use Lc\SovBundle\Factory\AbstractFactory;
  4. use Lc\SovBundle\Model\Ticket\TicketInterface;
  5. class TicketFactory extends AbstractFactory
  6. {
  7. public function getEntityClass()
  8. {
  9. return TicketInterface::class;
  10. }
  11. public function create($params = array())
  12. {
  13. return parent::create($params);
  14. }
  15. }