mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-31 12:10:10 +02:00
fix a typo
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user