{ | { | ||||
$ticket = parent::create(); | $ticket = parent::create(); | ||||
if(!is_null($this->section)) { | |||||
if(isset($this->section) && !is_null($this->section)) { | |||||
$ticket->setSection($this->section); | $ticket->setSection($this->section); | ||||
} | } | ||||
if(!is_null($this->merchant)) { | |||||
if(isset($this->merchant) && !is_null($this->merchant)) { | |||||
$ticket->setMerchant($this->merchant); | $ticket->setMerchant($this->merchant); | ||||
} | } | ||||
return $ticket; | return $ticket; | ||||
} | } | ||||
} | } |