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