From ade6e48f0b08b46ba30831037a605b41b8ff0e04 Mon Sep 17 00:00:00 2001 From: whwyy Date: Mon, 6 Jul 2026 21:04:28 +0800 Subject: [PATCH] eee --- SqlBuilder.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/SqlBuilder.php b/SqlBuilder.php index 4a01174..42a943d 100644 --- a/SqlBuilder.php +++ b/SqlBuilder.php @@ -78,6 +78,7 @@ class SqlBuilder extends Component $params = $this->query->params; $this->query->params = []; $array = $this->makeParams($attributes); + var_dump($params, $array); foreach ($params as $name => $value) { $this->query->pushParam($value); } @@ -146,9 +147,7 @@ class SqlBuilder extends Component */ public function delete(): string { - return 'DELETE FROM ' . - $this->getFromAlias() . ' ' . - $this->make(); + return 'DELETE FROM ' . $this->getFromAlias() . ' ' . $this->make(); }