diff --git a/Base/Model.php b/Base/Model.php index 13ac9f5..1d606b6 100644 --- a/Base/Model.php +++ b/Base/Model.php @@ -844,6 +844,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T } $method = 'get' . ucfirst($name) . 'Attribute'; if (!method_exists($this, $method)) { + return $value; return $this->_decode($name, $value); } return $this->{$method}($value);