text = $text; } /** * @param string $text */ public function setText(string $text) : void{ $this->text = $text; } /** * @return string */ public function getText() : string{ return $this->text; } /** * @return string */ public function __toString() : string{ return $this->getText(); } }