@@ -225,9 +225,9 @@ discard block |
||
| 225 | 225 | |
| 226 | 226 | $this->setSort(); |
| 227 | 227 | |
| 228 | - $this->queries->reject(function ($query) { |
|
| 228 | + $this->queries->reject(function($query) { |
|
| 229 | 229 | return $query['method'] == 'paginate'; |
| 230 | - })->each(function ($query) { |
|
| 230 | + })->each(function($query) { |
|
| 231 | 231 | $this->model = $this->model->{$query['method']}(...$query['arguments']); |
| 232 | 232 | }); |
| 233 | 233 | |
@@ -274,7 +274,7 @@ discard block |
||
| 274 | 274 | $this->setSort(); |
| 275 | 275 | $this->setPaginate(); |
| 276 | 276 | |
| 277 | - $this->queries->unique()->each(function ($query) { |
|
| 277 | + $this->queries->unique()->each(function($query) { |
|
| 278 | 278 | $this->model = call_user_func_array([$this->model, $query['method']], $query['arguments']); |
| 279 | 279 | }); |
| 280 | 280 | |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | { |
| 319 | 319 | $paginate = $this->findQueryByMethod('paginate'); |
| 320 | 320 | |
| 321 | - $this->queries = $this->queries->reject(function ($query) { |
|
| 321 | + $this->queries = $this->queries->reject(function($query) { |
|
| 322 | 322 | return $query['method'] == 'paginate'; |
| 323 | 323 | }); |
| 324 | 324 | |
@@ -372,7 +372,7 @@ discard block |
||
| 372 | 372 | */ |
| 373 | 373 | protected function findQueryByMethod($method) |
| 374 | 374 | { |
| 375 | - return $this->queries->first(function ($query) use ($method) { |
|
| 375 | + return $this->queries->first(function($query) use ($method) { |
|
| 376 | 376 | return $query['method'] == $method; |
| 377 | 377 | }); |
| 378 | 378 | } |
@@ -416,7 +416,7 @@ discard block |
||
| 416 | 416 | { |
| 417 | 417 | list($relationName, $relationColumn) = explode('.', $column); |
| 418 | 418 | |
| 419 | - if ($this->queries->contains(function ($query) use ($relationName) { |
|
| 419 | + if ($this->queries->contains(function($query) use ($relationName) { |
|
| 420 | 420 | return $query['method'] == 'with' && in_array($relationName, $query['arguments']); |
| 421 | 421 | })) { |
| 422 | 422 | $relation = $this->model->$relationName(); |
@@ -445,7 +445,7 @@ discard block |
||
| 445 | 445 | */ |
| 446 | 446 | public function resetOrderBy() |
| 447 | 447 | { |
| 448 | - $this->queries = $this->queries->reject(function ($query) { |
|
| 448 | + $this->queries = $this->queries->reject(function($query) { |
|
| 449 | 449 | return $query['method'] == 'orderBy' || $query['method'] == 'orderByDesc'; |
| 450 | 450 | }); |
| 451 | 451 | } |