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

Test Failed
Pull Request — main (#5440)
by Cristian
26:23 queued 11:28
created
src/app/Library/CrudPanel/CrudColumn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
      */
76 76
     public function key(string $key)
77 77
     {
78
-        if (! isset($this->attributes['name'])) {
78
+        if (!isset($this->attributes['name'])) {
79 79
             abort(500, 'Column name must be defined before changing the key.');
80 80
         }
81 81
 
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Create.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
                     // - a single dimensional array: [1,2,3]
112 112
                     // - an array of arrays: [[1][2][3]]
113 113
                     // if is as single dimensional array we can only attach.
114
-                    if ($relationValues === null || ! is_multidimensional_array($relationValues)) {
114
+                    if ($relationValues === null || !is_multidimensional_array($relationValues)) {
115 115
                         $this->attachManyRelation($item, $relation, $relationDetails, $relationValues);
116 116
                     } else {
117 117
                         $this->createManyEntries($item, $relation, $relationMethod, $relationDetails);
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
 
276 276
         // if column is not nullable in database, and there is no column default (null),
277 277
         // we will delete the entry from the database, otherwise it will throw and ugly DB error.
278
-        if (! $relationColumnIsNullable && $dbColumnDefault === null) {
278
+        if (!$relationColumnIsNullable && $dbColumnDefault === null) {
279 279
             return $removedEntries->lazy()->each->delete();
280 280
         }
281 281
 
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
         }
321 321
 
322 322
         // use the collection of sent ids to match against database ids, delete the ones not found in the submitted ids.
323
-        if (! empty($relatedItemsSent)) {
323
+        if (!empty($relatedItemsSent)) {
324 324
             // we perform the cleanup of removed database items
325 325
             $entry->{$relationMethod}()->whereNotIn($relatedModelLocalKey, $relatedItemsSent)->lazy()->each->delete();
326 326
         }
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Views.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
         }
300 300
         // otherwise, loop through all the possible view namespaces
301 301
         // until you find a view that exists
302
-        $paths = array_map(function ($item) use ($viewPath) {
302
+        $paths = array_map(function($item) use ($viewPath) {
303 303
             return $item.'.'.$viewPath;
304 304
         }, ViewNamespaces::getFor('fields'));
305 305
 
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
         }
311 311
 
312 312
         // if no view exists, in any of the directories above... no bueno
313
-        if (! backpack_pro()) {
313
+        if (!backpack_pro()) {
314 314
             throw new BackpackProRequiredException('Cannot find the field view: '.$viewPath.'. Please check for typos.'.(backpack_pro() ? '' : ' If you are trying to use a PRO field, please first purchase and install the backpack/pro addon from backpackforlaravel.com'), 1);
315 315
         }
316 316
         abort(500, "Cannot find '{$viewPath}' field view in any of the regular locations.");
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/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/Database/DatabaseSchema.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,12 +32,12 @@  discard block
 block discarded – undo
32 32
      */
33 33
     private static function generateDatabaseSchema(string $connection, string $table)
34 34
     {
35
-        if (! isset(self::$schema[$connection])) {
35
+        if (!isset(self::$schema[$connection])) {
36 36
             $rawTables = DB::connection($connection)->getDoctrineSchemaManager()->createSchema();
37 37
             self::$schema[$connection] = self::mapTables($rawTables);
38 38
         } else {
39 39
             // check for a specific table in case it was created after schema had been generated.
40
-            if (! isset(self::$schema[$connection][$table])) {
40
+            if (!isset(self::$schema[$connection][$table])) {
41 41
                 self::$schema[$connection][$table] = DB::connection($connection)->getDoctrineSchemaManager()->listTableDetails($table);
42 42
             }
43 43
         }
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     private static function mapTables($rawTables)
53 53
     {
54
-        return LazyCollection::make($rawTables->getTables())->mapWithKeys(function ($table, $key) {
54
+        return LazyCollection::make($rawTables->getTables())->mapWithKeys(function($table, $key) {
55 55
             return [$table->getName() => $table];
56 56
         })->toArray();
57 57
     }
Please login to merge, or discard this patch.
src/app/Library/Database/TableSchema.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     public function getColumnsNames()
21 21
     {
22 22
         return array_values(
23
-            array_map(function ($item) {
23
+            array_map(function($item) {
24 24
                 return $item->getName();
25 25
             }, $this->getColumns())
26 26
         );
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function getColumnType(string $columnName)
36 36
     {
37
-        if (! $this->schemaExists() || ! $this->schema->hasColumn($columnName)) {
37
+        if (!$this->schemaExists() || !$this->schema->hasColumn($columnName)) {
38 38
             return 'varchar';
39 39
         }
40 40
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     public function hasColumn($columnName)
53 53
     {
54
-        if (! $this->schemaExists()) {
54
+        if (!$this->schemaExists()) {
55 55
             return false;
56 56
         }
57 57
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function columnIsNullable($columnName)
68 68
     {
69
-        if (! $this->columnExists($columnName)) {
69
+        if (!$this->columnExists($columnName)) {
70 70
             return true;
71 71
         }
72 72
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      */
84 84
     public function columnHasDefault($columnName)
85 85
     {
86
-        if (! $this->columnExists($columnName)) {
86
+        if (!$this->columnExists($columnName)) {
87 87
             return false;
88 88
         }
89 89
 
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      */
101 101
     public function getColumnDefault($columnName)
102 102
     {
103
-        if (! $this->columnExists($columnName)) {
103
+        if (!$this->columnExists($columnName)) {
104 104
             return false;
105 105
         }
106 106
 
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      */
117 117
     public function getColumns()
118 118
     {
119
-        if (! $this->schemaExists()) {
119
+        if (!$this->schemaExists()) {
120 120
             return [];
121 121
         }
122 122
 
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      */
132 132
     private function columnExists($columnName)
133 133
     {
134
-        if (! $this->schemaExists()) {
134
+        if (!$this->schemaExists()) {
135 135
             return false;
136 136
         }
137 137
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
      */
146 146
     private function schemaExists()
147 147
     {
148
-        if (! empty($this->schema)) {
148
+        if (!empty($this->schema)) {
149 149
             return true;
150 150
         }
151 151
 
Please login to merge, or discard this patch.