From abb561f185e18e0eb3bfcaf6ea86b489e6d025fe Mon Sep 17 00:00:00 2001 From: whwyy Date: Mon, 18 Dec 2023 16:03:24 +0800 Subject: [PATCH] eee --- ModelInterface.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ModelInterface.php b/ModelInterface.php index 411dda4..c2ee38c 100644 --- a/ModelInterface.php +++ b/ModelInterface.php @@ -86,15 +86,17 @@ interface ModelInterface /** * @param string $field + * @param mixed $value * @return mixed */ - public function setAttribute(string $field): mixed; + public function setAttribute(string $field, mixed $value): mixed; /** * @param string $field + * @param mixed $value * @return mixed */ - public function setOldAttribute(string $field): mixed; + public function setOldAttribute(string $field, mixed $value): mixed; /**