id; } /** * Set text * * @param string $text * @return Tag */ public function setText($text) { $this->text = $text; return $this; } /** * Get text * * @return string */ public function getText() { return $this->text; } }