diff --git a/src/Traits/QueryTrait.php b/src/Traits/QueryTrait.php index 9c1bc1e..6b4b769 100644 --- a/src/Traits/QueryTrait.php +++ b/src/Traits/QueryTrait.php @@ -923,6 +923,7 @@ trait QueryTrait private function addArray(array $array): static { foreach ($array as $key => $value) { + if (is_null($value)) continue; if (is_numeric($key)) { [$column, $opera, $value] = $this->opera(...$value);