From 78f665951fb5c657c18e691df775aa7d82e1958f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Wed, 24 Feb 2021 18:54:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Database/Traits/QueryTrait.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Database/Traits/QueryTrait.php b/Database/Traits/QueryTrait.php index 5422c31b..101a6e16 100644 --- a/Database/Traits/QueryTrait.php +++ b/Database/Traits/QueryTrait.php @@ -730,6 +730,7 @@ trait QueryTrait */ public function where(callable|array|string $conditions): static { + var_dump($conditions); $this->where[] = [$conditions]; return $this; }