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.

TicketFactory.php 514B

3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
1234567891011121314151617181920212223
  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. }