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