Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

29 linhas
698B

  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(!is_null($this->section)) {
  15. $ticket->setSection($this->section);
  16. }
  17. if(!is_null($this->merchant)) {
  18. $ticket->setMerchant($this->merchant);
  19. }
  20. return $ticket;
  21. }
  22. }