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 | |