*/ | */ | ||||
protected $ticketTypesNotification = []; | protected $ticketTypesNotification = []; | ||||
/** | |||||
* @ORM\Column(type="datetime", nullable=true) | |||||
*/ | |||||
protected $lastLogin; | |||||
public function __construct() | public function __construct() | ||||
{ | { | ||||
$this->tickets = new ArrayCollection(); | $this->tickets = new ArrayCollection(); | ||||
return $this; | return $this; | ||||
} | } | ||||
public function getLastLogin() | |||||
{ | |||||
return $this->lastLogin; | |||||
} | |||||
public function setLastLogin(\DateTime $time = null) | |||||
{ | |||||
$this->lastLogin = $time; | |||||
return $this; | |||||
} | |||||
} | } |