From 0b27a7dc7d80029eab9706da26543872f28e5003 Mon Sep 17 00:00:00 2001 From: whwyy Date: Fri, 2 Jan 2026 01:08:47 +0800 Subject: [PATCH] eee --- Base/Model.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Base/Model.php b/Base/Model.php index e98fe65..bb44f6c 100644 --- a/Base/Model.php +++ b/Base/Model.php @@ -502,6 +502,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \ */ public function save(): static|bool { + var_dump($this->_attributes); if (!$this->validator($this->rules(), $this->_attributes) || !$this->beforeSave($this)) { return FALSE; }