author = $author; return $this; } /** * Get the author * * @return string */ public function getAuthor(): string { if ($this->author === null) { throw new \LogicException( 'You are accessing an unset property. Please make sure to set it beforehand.' ); } return $this->author; } }