We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30910bc commit 2136f14Copy full SHA for 2136f14
src/Database/Query/FMBaseBuilder.php
@@ -542,9 +542,12 @@ protected function computeWhereIns()
542
return;
543
}
544
545
- $this->wheres = Arr::map(Arr::crossJoin($this->wheres, ...$whereIns), function ($conditions) {
+ $arr = Arr::crossJoin($this->wheres, ...$whereIns);
546
+ $function = function ($conditions) {
547
return array_merge(...array_values($conditions));
- });
548
+ };
549
+
550
+ $this->wheres = array_map($function, $arr);
551
552
553
/**
0 commit comments