setProperties([ 'type' => $type ]); return $ticketEvent; } public function getProps() { return [ 'type', 'content', 'file', 'authorUser', 'authorStaff', 'date' ]; } public function getAuthor() { if($this->authorUser) { return $this->authorUser; } if($this->authorStaff) { return $this->authorStaff; } return new NullDataStore(); } }