diff --git a/AbstractFactory/Text.php b/AbstractFactory/Text.php index 675e6d5..248f5c6 100644 --- a/AbstractFactory/Text.php +++ b/AbstractFactory/Text.php @@ -17,6 +17,6 @@ abstract class Text implements MediaInterface */ public function __construct($text) { - $this->_text = (string) $text; + $this->text = (string) $text; } }