Skip to content

Commit

Permalink
Remove flatting value from 'whereMultiple' method
Browse files Browse the repository at this point in the history
  • Loading branch information
musiermoore committed Mar 3, 2024
1 parent 64482e2 commit 1244223
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/Illuminate/Database/Query/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -2172,8 +2172,6 @@ private function whereMultiple($columns, $operator = null, $value = null, $colum
$value, $operator, empty($value) && $this->invalidOperator($operator)
);

$value = $this->flattenValue($value);

$this->whereNested(function ($query) use ($columns, $operator, $value, $columnsBoolean) {
foreach ($columns as $column) {
$query->where($column, $operator, $value, $columnsBoolean);
Expand Down

0 comments on commit 1244223

Please sign in to comment.