We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | public function addFakes($columns = ['extras']) |
21 | 21 | { |
22 | 22 | foreach ($columns as $key => $column) { |
23 | - if (! isset($this->attributes[$column])) { |
|
23 | + if (!isset($this->attributes[$column])) { |
|
24 | 24 | continue; |
25 | 25 | } |
26 | 26 | |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | */ |
68 | 68 | public function shouldDecodeFake($column) |
69 | 69 | { |
70 | - return ! in_array($column, array_keys($this->getCasts())); |
|
70 | + return !in_array($column, array_keys($this->getCasts())); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
@@ -78,6 +78,6 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public function shouldEncodeFake($column) |
80 | 80 | { |
81 | - return ! in_array($column, array_keys($this->getCasts())); |
|
81 | + return !in_array($column, array_keys($this->getCasts())); |
|
82 | 82 | } |
83 | 83 | } |
@@ -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); |