Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Passed
Push — bootstrap5-theme-coreui-v4-leg... ( 07e9f5 )
by
unknown
40:25 queued 26:39
created
src/app/Library/CrudPanel/Traits/Validation.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -46,10 +46,10 @@  discard block
 block discarded – undo
46 46
     private function getValidationRulesFromFieldsAndSubfields($fields)
47 47
     {
48 48
         $rules = collect($fields)
49
-            ->filter(function ($value, $key) {
49
+            ->filter(function($value, $key) {
50 50
                 // only keep fields where 'validationRules' OR there are subfields
51 51
                 return array_key_exists('validationRules', $value) || array_key_exists('subfields', $value);
52
-            })->map(function ($item, $key) {
52
+            })->map(function($item, $key) {
53 53
                 $validationRules = [];
54 54
                 // only keep the rules, not the entire field definition
55 55
                 if (isset($item['validationRules'])) {
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
                 }
58 58
                 // add validation rules for subfields
59 59
                 if (array_key_exists('subfields', $item)) {
60
-                    $subfieldsWithValidation = array_filter($item['subfields'], function ($subfield) {
60
+                    $subfieldsWithValidation = array_filter($item['subfields'], function($subfield) {
61 61
                         return array_key_exists('validationRules', $subfield);
62 62
                     });
63 63
 
@@ -82,10 +82,10 @@  discard block
 block discarded – undo
82 82
     {
83 83
         $messages = [];
84 84
         collect($fields)
85
-            ->filter(function ($value, $key) {
85
+            ->filter(function($value, $key) {
86 86
                 // only keep fields where 'validationMessages' OR there are subfields
87 87
                 return array_key_exists('validationMessages', $value) || array_key_exists('subfields', $value);
88
-            })->each(function ($item, $key) use (&$messages) {
88
+            })->each(function($item, $key) use (&$messages) {
89 89
                 if (isset($item['validationMessages'])) {
90 90
                     foreach ($item['validationMessages'] as $rule => $message) {
91 91
                         $messages[$key.'.'.$rule] = $message;
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
                 }
94 94
                 // add messages from subfields
95 95
                 if (array_key_exists('subfields', $item)) {
96
-                    $subfieldsWithValidationMessages = array_filter($item['subfields'], function ($subfield) {
96
+                    $subfieldsWithValidationMessages = array_filter($item['subfields'], function($subfield) {
97 97
                         return array_key_exists('validationRules', $subfield);
98 98
                     });
99 99
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
      */
130 130
     public function setValidation($classOrRulesArray = false, $messages = [])
131 131
     {
132
-        if (! $classOrRulesArray) {
132
+        if (!$classOrRulesArray) {
133 133
             $this->setValidationFromFields();
134 134
         } elseif (is_array($classOrRulesArray)) {
135 135
             $this->setValidationFromArray($classOrRulesArray, $messages);
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
             return app(get_class($extendedRequest), ['rules' => $rules, 'messages' => $messages]);
237 237
         }
238 238
 
239
-        return ! empty($rules) ? $this->checkRequestValidity($rules, $messages) : $this->getRequest();
239
+        return !empty($rules) ? $this->checkRequestValidity($rules, $messages) : $this->getRequest();
240 240
     }
241 241
 
242 242
     /**
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
      */
307 307
     public function isRequired($inputKey)
308 308
     {
309
-        if (! $this->hasOperationSetting('requiredFields')) {
309
+        if (!$this->hasOperationSetting('requiredFields')) {
310 310
             return false;
311 311
         }
312 312
 
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
     {
328 328
         [$rules, $messages] = $this->getValidationRulesAndMessagesFromField($field, $parent);
329 329
 
330
-        if (! empty($rules)) {
330
+        if (!empty($rules)) {
331 331
             $this->setValidation($rules, $messages);
332 332
         }
333 333
     }
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Read.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function getEntry($id)
58 58
     {
59
-        if (! $this->entry) {
59
+        if (!$this->entry) {
60 60
             $this->entry = $this->getModelWithCrudPanelQuery()->findOrFail($id);
61 61
             $this->entry = $this->entry->withFakes();
62 62
         }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function getEntryWithLocale($id)
75 75
     {
76
-        if (! $this->entry) {
76
+        if (!$this->entry) {
77 77
             $this->entry = $this->getEntry($id);
78 78
         }
79 79
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      */
163 163
     public function enableDetailsRow()
164 164
     {
165
-        if (! backpack_pro()) {
165
+        if (!backpack_pro()) {
166 166
             throw new BackpackProRequiredException('Details row');
167 167
         }
168 168
 
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
                 // we will apply the same labels as the values to the menu if developer didn't
262 262
                 $this->abortIfInvalidPageLength($menu[0]);
263 263
 
264
-                if (! isset($menu[1]) || ! is_array($menu[1])) {
264
+                if (!isset($menu[1]) || !is_array($menu[1])) {
265 265
                     $menu[1] = $menu[0];
266 266
                 }
267 267
             } else {
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
      */
350 350
     public function enableExportButtons()
351 351
     {
352
-        if (! backpack_pro()) {
352
+        if (!backpack_pro()) {
353 353
             throw new BackpackProRequiredException('Export buttons');
354 354
         }
355 355
 
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/AutoSet.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@  discard block
 block discarded – undo
14 14
     {
15 15
         $this->getDbColumnTypes();
16 16
 
17
-        array_map(function ($field) use ($setFields, $setColumns) {
18
-            if ($setFields && ! isset($this->getCleanStateFields()[$field])) {
17
+        array_map(function($field) use ($setFields, $setColumns) {
18
+            if ($setFields && !isset($this->getCleanStateFields()[$field])) {
19 19
                 $this->addField([
20 20
                     'name'       => $field,
21 21
                     'label'      => $this->makeLabel($field),
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
                 ]);
29 29
             }
30 30
 
31
-            if ($setColumns && ! in_array($field, $this->model->getHidden()) && ! isset($this->columns()[$field])) {
31
+            if ($setColumns && !in_array($field, $this->model->getHidden()) && !isset($this->columns()[$field])) {
32 32
                 $this->addColumn([
33 33
                     'name'    => $field,
34 34
                     'label'   => $this->makeLabel($field),
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     {
51 51
         $dbColumnTypes = [];
52 52
 
53
-        if (! $this->driverIsSql()) {
53
+        if (!$this->driverIsSql()) {
54 54
             return $dbColumnTypes;
55 55
         }
56 56
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 
116 116
         $dbColumnTypes = $this->getDbColumnTypes();
117 117
 
118
-        if (! isset($dbColumnTypes[$fieldName])) {
118
+        if (!isset($dbColumnTypes[$fieldName])) {
119 119
             return 'text';
120 120
         }
121 121
 
@@ -212,12 +212,12 @@  discard block
 block discarded – undo
212 212
     {
213 213
         $fillable = $this->model->getFillable();
214 214
 
215
-        if (! $this->driverIsSql()) {
215
+        if (!$this->driverIsSql()) {
216 216
             $columns = $fillable;
217 217
         } else {
218 218
             // Automatically-set columns should be both in the database, and in the $fillable variable on the Eloquent Model
219 219
             $columns = $this->model::getDbTableSchema()->getColumnsNames();
220
-            if (! empty($fillable)) {
220
+            if (!empty($fillable)) {
221 221
                 $columns = array_intersect($columns, $fillable);
222 222
             }
223 223
         }
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Columns.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      */
114 114
     public function makeFirstColumn()
115 115
     {
116
-        if (! $this->columns()) {
116
+        if (!$this->columns()) {
117 117
             return false;
118 118
         }
119 119
 
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     public function removeColumns($columns)
159 159
     {
160
-        if (! empty($columns)) {
160
+        if (!empty($columns)) {
161 161
             foreach ($columns as $columnKey) {
162 162
                 $this->removeColumn($columnKey);
163 163
             }
@@ -251,8 +251,8 @@  discard block
 block discarded – undo
251 251
     {
252 252
         $columns = $this->columns();
253 253
 
254
-        return collect($columns)->pluck('entity')->reject(function ($value, $key) {
255
-            return ! $value;
254
+        return collect($columns)->pluck('entity')->reject(function($value, $key) {
255
+            return !$value;
256 256
         })->toArray();
257 257
     }
258 258
 
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
      */
327 327
     public function hasColumnWhere($attribute, $value)
328 328
     {
329
-        $match = Arr::first($this->columns(), function ($column, $columnKey) use ($attribute, $value) {
329
+        $match = Arr::first($this->columns(), function($column, $columnKey) use ($attribute, $value) {
330 330
             return isset($column[$attribute]) && $column[$attribute] == $value;
331 331
         });
332 332
 
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
      */
343 343
     public function firstColumnWhere($attribute, $value)
344 344
     {
345
-        return Arr::first($this->columns(), function ($column, $columnKey) use ($attribute, $value) {
345
+        return Arr::first($this->columns(), function($column, $columnKey) use ($attribute, $value) {
346 346
             return isset($column[$attribute]) && $column[$attribute] == $value;
347 347
         });
348 348
     }
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
 
375 375
         // if there's a model defined, but no attribute
376 376
         // guess an attribute using the identifiableAttribute functionality in CrudTrait
377
-        if (isset($column['model']) && ! isset($column['attribute']) && method_exists($column['model'], 'identifiableAttribute')) {
377
+        if (isset($column['model']) && !isset($column['attribute']) && method_exists($column['model'], 'identifiableAttribute')) {
378 378
             $column['attribute'] = (new $column['model'])->identifiableAttribute();
379 379
         }
380 380
 
@@ -399,8 +399,8 @@  discard block
 block discarded – undo
399 399
      */
400 400
     public function countColumnsWithoutActions()
401 401
     {
402
-        return collect($this->columns())->filter(function ($column, $key) {
403
-            return ! isset($column['hasActions']) || $column['hasActions'] == false;
402
+        return collect($this->columns())->filter(function($column, $key) {
403
+            return !isset($column['hasActions']) || $column['hasActions'] == false;
404 404
         })->count();
405 405
     }
406 406
 
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Query.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/MorphRelationships.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     {
67 67
         if (isset($field['relation_type']) && $field['relation_type'] === 'MorphTo') {
68 68
             [$morphTypeFieldName, $morphIdFieldName] = $this->getMorphToFieldNames($field['name']);
69
-            if (! $this->hasFieldWhere('name', $morphTypeFieldName) || ! $this->hasFieldWhere('name', $morphIdFieldName)) {
69
+            if (!$this->hasFieldWhere('name', $morphTypeFieldName) || !$this->hasFieldWhere('name', $morphIdFieldName)) {
70 70
                 // create the morph fields in the crud panel
71 71
                 $field = $this->createMorphToRelationFields($field, $morphTypeFieldName, $morphIdFieldName);
72 72
                 foreach ($field['morphOptions'] ?? [] as $morphOption) {
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
         [$morphTypeFieldName, $morphIdFieldName] = $this->getMorphToFieldNames($fieldName);
98 98
 
99 99
         // check if the morph field where we are about to add the options have the proper fields setup
100
-        if (! in_array($morphTypeFieldName, array_column($morphField['subfields'], 'name')) ||
101
-            ! in_array($morphIdFieldName, array_column($morphField['subfields'], 'name'))) {
100
+        if (!in_array($morphTypeFieldName, array_column($morphField['subfields'], 'name')) ||
101
+            !in_array($morphIdFieldName, array_column($morphField['subfields'], 'name'))) {
102 102
             throw new \Exception('Trying to add morphOptions to a non morph field. Check if field and relation name matches.');
103 103
         }
104 104
         // split the subfields into morphable_type and morphable_id fields.
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
         } else {
154 154
             // in case it's not a model and is a string representing the model in the morphMap
155 155
             // check if that string exists in the morphMap, otherwise abort.
156
-            if (! array_key_exists($key, $morphMap)) {
156
+            if (!array_key_exists($key, $morphMap)) {
157 157
                 throw new \Exception('Unknown morph type «'.$key.'», that name was not found in the morphMap.');
158 158
             }
159 159
             // check if the key already exists
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/FakeFields.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
                             if (array_key_exists($subfieldName, $requestInput) && $isSubfieldFake) {
50 50
                                 $this->addCompactedField($requestInput, $subfieldName, $subFakeFieldKey);
51 51
 
52
-                                if (! in_array($subFakeFieldKey, $compactedFakeFields)) {
52
+                                if (!in_array($subFakeFieldKey, $compactedFakeFields)) {
53 53
                                     $compactedFakeFields[] = $subFakeFieldKey;
54 54
                                 }
55 55
                             }
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
                 if (array_key_exists($fieldName, $requestInput) && $isFakeField) {
62 62
                     $this->addCompactedField($requestInput, $fieldName, $fakeFieldKey);
63 63
 
64
-                    if (! in_array($fakeFieldKey, $compactedFakeFields)) {
64
+                    if (!in_array($fakeFieldKey, $compactedFakeFields)) {
65 65
                         $compactedFakeFields[] = $fakeFieldKey;
66 66
                     }
67 67
                 }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
         // json_encode all fake_value columns if applicable in the database, so they can be properly stored and interpreted
72 72
         foreach ($compactedFakeFields as $value) {
73
-            if (! (property_exists($model, 'translatable') && in_array($value, $model->getTranslatableAttributes(), true)) && $model->shouldEncodeFake($value)) {
73
+            if (!(property_exists($model, 'translatable') && in_array($value, $model->getTranslatableAttributes(), true)) && $model->shouldEncodeFake($value)) {
74 74
                 $requestInput[$value] = json_encode($requestInput[$value]);
75 75
             }
76 76
         }
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Input.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         }
99 99
 
100 100
         //remove fields that are not in the submitted form input
101
-        $relationFields = array_filter($relationFields, function ($field) use ($input) {
101
+        $relationFields = array_filter($relationFields, function($field) use ($input) {
102 102
             return Arr::has($input, $field['name']) || isset($input[$field['name']]) || Arr::has($input, Str::afterLast($field['name'], '.'));
103 103
         });
104 104
 
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
 
178 178
             // when using dot notation if relationMethod is not set we are sure we want to exclude those relations.
179 179
             if ($this->getOnlyRelationEntity($field) !== $field['entity']) {
180
-                if (! $relationMethod) {
180
+                if (!$relationMethod) {
181 181
                     $excludedFields[] = $nameToExclude;
182 182
                 }
183 183
 
@@ -191,8 +191,8 @@  discard block
 block discarded – undo
191 191
             }
192 192
         }
193 193
 
194
-        return Arr::where($input, function ($item, $key) use ($excludedFields) {
195
-            return ! in_array($key, $excludedFields);
194
+        return Arr::where($input, function($item, $key) use ($excludedFields) {
195
+            return !in_array($key, $excludedFields);
196 196
         });
197 197
     }
198 198
 }
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/CrudField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -245,7 +245,7 @@
 block discarded – undo
245 245
         // append the field name to the rule name of validationMessages array.
246 246
         // eg: ['required => 'This field is required']
247 247
         // will be transformed into: ['field_name.required' => 'This field is required]
248
-        $this->crud()->setValidationFromArray([], array_merge(...array_map(function ($rule, $message) {
248
+        $this->crud()->setValidationFromArray([], array_merge(...array_map(function($rule, $message) {
249 249
             return [$this->attributes['name'].'.'.$rule => $message];
250 250
         }, array_keys($messages), $messages)));
251 251
 
Please login to merge, or discard this patch.