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 6a047fd commit b0d73adCopy full SHA for b0d73ad
src/Database/Query/FMBaseBuilder.php
@@ -474,7 +474,9 @@ protected function computeWhereIns()
474
return;
475
}
476
477
- $this->wheres = Arr::crossJoin($this->wheres, ...$whereIns);
+ $this->wheres = Arr::map(Arr::crossJoin($this->wheres, ...$whereIns), function($conditions) {
478
+ return array_merge(...array_values($conditions));
479
+ });
480
481
482
/**
0 commit comments