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