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 2ad0db0 commit afa84b4Copy full SHA for afa84b4
src/Illuminate/Database/Eloquent/Builder.php
@@ -1150,10 +1150,10 @@ protected function callScope($scope, $parameters)
1150
*/
1151
protected function applyCallback(callable $callback, $parameters = [], $query = null)
1152
{
1153
- if (!$query) {
+ if (! $query) {
1154
$query = $this->getQuery();
1155
}
1156
-
+
1157
// We will keep track of how many wheres are on the query before running the
1158
// scope so that we can properly group the added scope constraints in the
1159
// query as their own isolated nested where statement and avoid issues.
0 commit comments