Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

23 lines
514B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Ticket;
  3. use Lc\CaracoleBundle\Context\SectionContextTrait;
  4. use Lc\SovBundle\Factory\Ticket\TicketFactory as SovTicketFactory;
  5. use Lc\SovBundle\Model\Ticket\TicketInterface;
  6. class TicketFactory extends SovTicketFactory
  7. {
  8. use SectionContextTrait;
  9. public function create(): TicketInterface
  10. {
  11. $ticket = parent::create();
  12. if(!is_null($this->section)) {
  13. $ticket->setSection($this->section);
  14. }
  15. return $ticket;
  16. }
  17. }