Bläddra i källkod

Merge branch 'develop'

master
Guillaume 3 år sedan
förälder
incheckning
2dfa166bd8
1 ändrade filer med 3 tillägg och 2 borttagningar
  1. +3
    -2
      Factory/Ticket/TicketFactory.php

+ 3
- 2
Factory/Ticket/TicketFactory.php Visa fil

@@ -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;
}
}

Laddar…
Avbryt
Spara