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