From 8174848de6811dd35b101502bec5197003f10629 Mon Sep 17 00:00:00 2001 From: whwyy Date: Mon, 18 Dec 2023 23:17:26 +0800 Subject: [PATCH] eee --- Traits/QueryTrait.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Traits/QueryTrait.php b/Traits/QueryTrait.php index 9a9e9c2..936633b 100644 --- a/Traits/QueryTrait.php +++ b/Traits/QueryTrait.php @@ -725,11 +725,11 @@ abstract class QueryTrait extends Component implements ActiveQueryInterface, ISq /** * @param string $column - * @param string $value + * @param mixed $value * @param string $opera * @return string */ - private function sprintf(string $column, string $value, string $opera = '='): string + private function sprintf(string $column, mixed $value, string $opera = '='): string { $this->pushParam($value); return $column . ' ' . $opera . ' ?';