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

TicketFactory.php 750B

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