diff --git a/Proxy/Proxy.php b/Proxy/Proxy.php index 88f13d9..f035e1f 100644 --- a/Proxy/Proxy.php +++ b/Proxy/Proxy.php @@ -55,7 +55,7 @@ class RecordProxy extends Record /** * @var bool */ - protected $_isDirrty = false; + protected $_isDirty = false; /** * @var bool @@ -75,7 +75,7 @@ class RecordProxy extends Record // that extends the Record class if (null !== $data) { $this->_isInitialized = true; - $this->_isDirrty = true; + $this->_isDirty = true; } } @@ -88,7 +88,7 @@ class RecordProxy extends Record */ public function __set($name, $value) { - $this->_isDirrty = true; + $this->_isDirty = true; parent::__set($name, $value); } }