mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-02 13:07:27 +02:00
fix a typo
This commit is contained in:
@@ -55,7 +55,7 @@ class RecordProxy extends Record
|
|||||||
/**
|
/**
|
||||||
* @var bool
|
* @var bool
|
||||||
*/
|
*/
|
||||||
protected $_isDirrty = false;
|
protected $_isDirty = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var bool
|
* @var bool
|
||||||
@@ -75,7 +75,7 @@ class RecordProxy extends Record
|
|||||||
// that extends the Record class
|
// that extends the Record class
|
||||||
if (null !== $data) {
|
if (null !== $data) {
|
||||||
$this->_isInitialized = true;
|
$this->_isInitialized = true;
|
||||||
$this->_isDirrty = true;
|
$this->_isDirty = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,7 +88,7 @@ class RecordProxy extends Record
|
|||||||
*/
|
*/
|
||||||
public function __set($name, $value)
|
public function __set($name, $value)
|
||||||
{
|
{
|
||||||
$this->_isDirrty = true;
|
$this->_isDirty = true;
|
||||||
parent::__set($name, $value);
|
parent::__set($name, $value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user