Skip to content

Commit adef889

Browse files
committed
Apply fixes from StyleCI
1 parent 140c3a8 commit adef889

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Database/Query/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1029,7 +1029,7 @@ public function whereIn($column, $values, $boolean = 'and', $not = false)
10291029
$this->wheres[] = compact('type', 'column', 'values', 'boolean');
10301030

10311031
if (count($values) !== count(Arr::flatten($values, 1))) {
1032-
throw new InvalidArgumentException("Nested arrays may not be passed to whereIn method.");
1032+
throw new InvalidArgumentException('Nested arrays may not be passed to whereIn method.');
10331033
}
10341034

10351035
// Finally, we'll add a binding for each value unless that value is an expression

0 commit comments

Comments
 (0)