id; } /** * Set author * * @param string $author * @return Comment */ public function setAuthor($author) { $this->author = $author; return $this; } /** * Get author * * @return string */ public function getAuthor() { return $this->author; } /** * Set text * * @param string $text * @return Comment */ public function setText($text) { $this->text = $text; return $this; } /** * Get text * * @return string */ public function getText() { return $this->text; } /** * Set created * * @param timestamp $created * @return Comment */ public function setCreated(\timestamp $created) { $this->created = $created; return $this; } /** * Get created * * @return timestamp */ public function getCreated() { return $this->created; } }