From 7c848616c0228f3e755e749ca9c8bc41f8ce55a1 Mon Sep 17 00:00:00 2001 From: kibernetique Date: Mon, 23 Sep 2013 15:23:28 +0300 Subject: [PATCH] Update Text.php just a little typo --- AbstractFactory/Text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }