We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | 'operation' => 'list', |
| 29 | 29 | ]); |
| 30 | 30 | |
| 31 | - if (! isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) { |
|
| 31 | + if (!isset($this->setupDetailsRowRoute) || $this->setupDetailsRowRoute === true) { |
|
| 32 | 32 | Route::get($segment.'/{id}/details', [ |
| 33 | 33 | 'as' => $routeName.'.showDetailsRow', |
| 34 | 34 | 'uses' => $controller.'@showDetailsRow', |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | { |
| 45 | 45 | $this->crud->allowAccess('list'); |
| 46 | 46 | |
| 47 | - LifecycleHook::hookInto('list:before_setup', function () { |
|
| 47 | + LifecycleHook::hookInto('list:before_setup', function() { |
|
| 48 | 48 | $this->crud->loadDefaultOperationSettingsFromConfig(); |
| 49 | 49 | $this->crud->setOperationSetting('datatablesUrl', $this->crud->getRoute()); |
| 50 | 50 | }); |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | $search = request()->input('search'); |
| 83 | 83 | |
| 84 | 84 | // check if length is allowed by developer |
| 85 | - if ($length && ! in_array($length, $this->crud->getPageLengthMenu()[0])) { |
|
| 85 | + if ($length && !in_array($length, $this->crud->getPageLengthMenu()[0])) { |
|
| 86 | 86 | return response()->json([ |
| 87 | 87 | 'error' => 'Unknown page length.', |
| 88 | 88 | ], 400); |