您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TicketFactory.php 514B

3 年前
3 年前
3 年前
3 年前
3 年前
3 年前
3 年前
3 年前
3 年前
3 年前
3 年前
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. }