author = (string) $author; return $this; } /** * Get the author * * @return string */ public function getAuthor() { return $this->author; } /** * Set the comment * * @param string $comment * * @return $this */ public function setComment($comment) { $this->comment = (string) $comment; return $this; } /** * Get the comment * * @return string */ public function getComment() { return $this->comment; } }