From 0d35ab368bfb71f2a72c538e9a4d708d51b2f98d Mon Sep 17 00:00:00 2001 From: Garrus MacTavish Date: Wed, 8 May 2013 01:06:11 +0800 Subject: [PATCH] fix a typo --- Proxy/Proxy.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } }