We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | (array) config('backpack.base.middleware_key', 'admin'), |
| 23 | 23 | 'prefix' => config('backpack.base.route_prefix', 'admin'), |
| 24 | 24 | ], |
| 25 | - function () { |
|
| 25 | + function() { |
|
| 26 | 26 | Route::crud('users', 'Backpack\CRUD\Tests\Unit\Http\Controllers\UserCrudController'); |
| 27 | 27 | } |
| 28 | 28 | ); |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | // |
| 33 | 33 | // It's done inside a middleware closure in order to have |
| 34 | 34 | // the complete request inside the CrudPanel object. |
| 35 | - $this->middleware(function ($request, $next) { |
|
| 35 | + $this->middleware(function($request, $next) { |
|
| 36 | 36 | $this->crud = app('crud'); |
| 37 | 37 | |
| 38 | 38 | $this->crud->setRequest($request); |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | protected function setupConfigurationForCurrentOperation() |
| 97 | 97 | { |
| 98 | 98 | $operationName = $this->crud->getCurrentOperation(); |
| 99 | - if (! $operationName) { |
|
| 99 | + if (!$operationName) { |
|
| 100 | 100 | return; |
| 101 | 101 | } |
| 102 | 102 | |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | */ |
| 100 | 100 | public function customOrderBy($column, $columnDirection = 'asc') |
| 101 | 101 | { |
| 102 | - if (! isset($column['orderLogic'])) { |
|
| 102 | + if (!isset($column['orderLogic'])) { |
|
| 103 | 103 | return $this->query; |
| 104 | 104 | } |
| 105 | 105 | |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | */ |
| 190 | 190 | public function getTotalQueryCount() |
| 191 | 191 | { |
| 192 | - if (! $this->getOperationSetting('showEntryCount')) { |
|
| 192 | + if (!$this->getOperationSetting('showEntryCount')) { |
|
| 193 | 193 | return 0; |
| 194 | 194 | } |
| 195 | 195 | |
@@ -228,7 +228,7 @@ discard block |
||
| 228 | 228 | */ |
| 229 | 229 | private function getCountFromQuery(Builder $query) |
| 230 | 230 | { |
| 231 | - if (! $this->driverIsSql()) { |
|
| 231 | + if (!$this->driverIsSql()) { |
|
| 232 | 232 | return $query->count(); |
| 233 | 233 | } |
| 234 | 234 | |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | $expressionColumns = []; |
| 248 | 248 | |
| 249 | 249 | foreach ($crudQuery->columns ?? [] as $column) { |
| 250 | - if (! is_string($column) && is_a($column, 'Illuminate\Database\Query\Expression')) { |
|
| 250 | + if (!is_string($column) && is_a($column, 'Illuminate\Database\Query\Expression')) { |
|
| 251 | 251 | $expressionColumns[] = $column; |
| 252 | 252 | } |
| 253 | 253 | } |