From baae44bed123bd2015f892d4605a033d44ca4639 Mon Sep 17 00:00:00 2001 From: David Rans Date: Tue, 20 Aug 2024 13:38:43 -0700 Subject: [PATCH] Use variable name instead of comment --- QueryGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QueryGenerator.php b/QueryGenerator.php index ded9a70..d5c42af 100644 --- a/QueryGenerator.php +++ b/QueryGenerator.php @@ -278,7 +278,7 @@ public function __call(string $method, array $args) { if ($clauses instanceof self) { $clauses->skipValidation(); - [$clauses, $params] = $clauses->build(/* $skipClauses = */ true); + [$clauses, $params] = $clauses->build(skipClauses: true); } if (!is_array($clauses)) {