diff options
Diffstat (limited to 'core/namespace/ORM/Entity.php')
-rw-r--r-- | core/namespace/ORM/Entity.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/namespace/ORM/Entity.php b/core/namespace/ORM/Entity.php index a19b1f4..592aeb5 100644 --- a/core/namespace/ORM/Entity.php +++ b/core/namespace/ORM/Entity.php @@ -19,13 +19,12 @@ abstract class Entity implements EntityInterface { #=============================================================================== # Set attribute #=============================================================================== - public function set(string $attribute, $value) { + public function set(string $attribute, $value): void { if($this->{$attribute} !== $value) { + $this->{$attribute} = $value; !in_array($attribute, $this->_modified) && array_push($this->_modified, $attribute); } - - return $this->{$attribute} = $value; } #=============================================================================== |