Преглед изворни кода

TicketFactory : correctif init section et merchant

packProduct
Guillaume пре 3 година
родитељ
комит
2698448306
1 измењених фајлова са 3 додато и 2 уклоњено
  1. +3
    -2
      Factory/Ticket/TicketFactory.php

+ 3
- 2
Factory/Ticket/TicketFactory.php Прегледај датотеку

@@ -16,13 +16,14 @@ class TicketFactory extends SovTicketFactory
{
$ticket = parent::create();

if(!is_null($this->section)) {
if(isset($this->section) && !is_null($this->section)) {
$ticket->setSection($this->section);
}

if(!is_null($this->merchant)) {
if(isset($this->merchant) && !is_null($this->merchant)) {
$ticket->setMerchant($this->merchant);
}

return $ticket;
}
}

Loading…
Откажи
Сачувај