From 7fb9c3ea05ba7148936df0f49297ba638ed84186 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Sat, 18 Jan 2025 20:28:24 +0800 Subject: [PATCH] eee --- Base/Model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Base/Model.php b/Base/Model.php index 826d0a6..d4a7096 100644 --- a/Base/Model.php +++ b/Base/Model.php @@ -699,7 +699,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \ $method = $prefix . 'Attribute'; if (method_exists($this, $method)) { - $this->_attributes[$name] = $this->{$method} ($value); + $this->_attributes[$name] = $this->{$method}($value); } else { $this->_attributes[$name] = $value; }