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 — main ( c7be22...c6b033 )
by Pedro
35:36 queued 20:37
created
tests/Unit/CrudPanel/CrudPanelFieldsTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -613,7 +613,7 @@  discard block
 block discarded – undo
613 613
     {
614 614
         $this->crudPanel->setOperationSetting(
615 615
             'strippedRequest',
616
-            static function (Request $request) {
616
+            static function(Request $request) {
617 617
                 return $request->toArray();
618 618
             },
619 619
             'update'
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
                         ->validationMessages(['required' => 'is_required', 'min' => 'min_2'])
749 749
                         ->store_in('some')
750 750
                         ->size(6)
751
-                        ->on('created', function () {
751
+                        ->on('created', function() {
752 752
                         })
753 753
                         ->subfields([['name' => 'sub_1']])
754 754
                         ->entity('bang');
@@ -780,7 +780,7 @@  discard block
 block discarded – undo
780 780
                 'class' => 'form-group col-md-6',
781 781
             ],
782 782
             'events' => [
783
-                'created' => function () {
783
+                'created' => function() {
784 784
                 },
785 785
             ],
786 786
             'subfields' => [
@@ -982,7 +982,7 @@  discard block
 block discarded – undo
982 982
 
983 983
     public function testItCanInferFieldAttributesFromADynamicRelation()
984 984
     {
985
-        User::resolveRelationUsing('dynamicRelation', function ($user) {
985
+        User::resolveRelationUsing('dynamicRelation', function($user) {
986 986
             return $user->hasOne(\Backpack\CRUD\Tests\config\Models\AccountDetails::class);
987 987
         });
988 988
 
Please login to merge, or discard this patch.
tests/Unit/CrudPanel/CrudPanelColumnsTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -931,7 +931,7 @@
 block discarded – undo
931 931
 
932 932
     public function testItCanInferFieldAttributesFromADynamicRelation()
933 933
     {
934
-        User::resolveRelationUsing('dynamicRelation', function ($user) {
934
+        User::resolveRelationUsing('dynamicRelation', function($user) {
935 935
             return $user->belongsTo(\Backpack\CRUD\Tests\config\Models\Bang::class);
936 936
         });
937 937
 
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Update.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         }
59 59
 
60 60
         // always have a hidden input for the entry id
61
-        if (! array_key_exists('id', $fields)) {
61
+        if (!array_key_exists('id', $fields)) {
62 62
             $fields['id'] = [
63 63
                 'name' => $entry->getKeyName(),
64 64
                 'value' => $entry->getKey(),
@@ -83,12 +83,12 @@  discard block
 block discarded – undo
83 83
         $fieldEntity = $field['entity'] ?? false;
84 84
         $fakeField = $field['fake'] ?? false;
85 85
 
86
-        if ($fieldEntity && ! $fakeField) {
86
+        if ($fieldEntity && !$fakeField) {
87 87
             return $this->getModelAttributeValueFromRelationship($model, $field);
88 88
         }
89 89
 
90 90
         if ($this->holdsMultipleInputs($field['name'])) {
91
-            $result = array_map(function ($item) use ($model) {
91
+            $result = array_map(function($item) use ($model) {
92 92
                 return $model->{$item};
93 93
             }, explode(',', $field['name']));
94 94
 
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     {
111 111
         [$relatedModel, $relationMethod] = $this->getModelAndMethodFromEntity($model, $field);
112 112
 
113
-        if (! method_exists($relatedModel, $relationMethod) && ! $relatedModel->isRelation($relationMethod)) {
113
+        if (!method_exists($relatedModel, $relationMethod) && !$relatedModel->isRelation($relationMethod)) {
114 114
             return $relatedModel->{$relationMethod};
115 115
         }
116 116
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                     $model = $this->setLocaleOnModel($model);
130 130
                     // when subfields are NOT set we don't need to get any more values
131 131
                     // we just return the plain models as we only need the ids
132
-                    if (! isset($field['subfields'])) {
132
+                    if (!isset($field['subfields'])) {
133 133
                         $result->push($model);
134 134
 
135 135
                         continue;
@@ -157,13 +157,13 @@  discard block
 block discarded – undo
157 157
                 break;
158 158
             case 'HasOne':
159 159
             case 'MorphOne':
160
-                if (! method_exists($relatedModel, $relationMethod) && ! $relatedModel->isRelation($relationMethod)) {
160
+                if (!method_exists($relatedModel, $relationMethod) && !$relatedModel->isRelation($relationMethod)) {
161 161
                     return;
162 162
                 }
163 163
 
164 164
                 $model = $relatedModel->{$relationMethod};
165 165
 
166
-                if (! $model) {
166
+                if (!$model) {
167 167
                     return;
168 168
                 }
169 169
 
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 
227 227
         $relationArray = explode('.', $relationEntity);
228 228
 
229
-        $relatedModel = array_reduce(array_splice($relationArray, 0, -1), function ($obj, $method) {
229
+        $relatedModel = array_reduce(array_splice($relationArray, 0, -1), function($obj, $method) {
230 230
             // if the string ends with `_id` we strip it out
231 231
             $method = Str::endsWith($method, '_id') ? Str::replaceLast('_id', '', $method) : $method;
232 232
 
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
             // if the subfield name does not contain a dot we just need to check
254 254
             // if it has subfields and return the result accordingly.
255 255
             foreach ((array) $subfield['name'] as $name) {
256
-                if (! Str::contains($name, '.')) {
256
+                if (!Str::contains($name, '.')) {
257 257
                     // when subfields are present, $relatedModel->{$name} returns a model instance
258 258
                     // otherwise returns the model attribute.
259 259
                     if ($relatedModel->{$name} && isset($subfield['subfields'])) {
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Relationships.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         $model = $this->getRelationModel($entity, -1);
66 66
         $lastSegmentAfterDot = Str::of($field['entity'])->afterLast('.');
67 67
 
68
-        if (! method_exists($model, $lastSegmentAfterDot)) {
68
+        if (!method_exists($model, $lastSegmentAfterDot)) {
69 69
             return (string) Str::of($field['entity'])->beforeLast('.');
70 70
         }
71 71
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
         return collect($this->getCleanStateFields())
88 88
             ->whereIn('relation_type', $relation_types)
89
-            ->filter(function ($item) use ($nested) {
89
+            ->filter(function($item) use ($nested) {
90 90
                 if ($nested) {
91 91
                     return true;
92 92
                 }
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      */
131 131
     private function getRelationFieldsWithoutRelationType($relations, $fields = [])
132 132
     {
133
-        if (! is_array($relations)) {
133
+        if (!is_array($relations)) {
134 134
             $relations = [$relations];
135 135
         }
136 136
 
@@ -139,8 +139,8 @@  discard block
 block discarded – undo
139 139
         }
140 140
 
141 141
         foreach ($relations as $relation) {
142
-            $fields = array_filter($fields, function ($field) use ($relation) {
143
-                if (! isset($field['relation_type'])) {
142
+            $fields = array_filter($fields, function($field) use ($relation) {
143
+                if (!isset($field['relation_type'])) {
144 144
                     return false;
145 145
                 }
146 146
 
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
                     $fields = array_merge($field['subfields'], $fields);
175 175
                 }
176 176
             }
177
-            $fields = array_filter($fields, function ($field) {
177
+            $fields = array_filter($fields, function($field) {
178 178
                 return isset($field['relation_type']) && $field['relation_type'] === 'BelongsTo';
179 179
             });
180 180
         }
@@ -241,8 +241,8 @@  discard block
 block discarded – undo
241 241
     {
242 242
         $all_relation_fields = $this->getRelationFields();
243 243
 
244
-        return Arr::where($all_relation_fields, function ($value, $key) {
245
-            return isset($value['pivot']) && ! $value['pivot'];
244
+        return Arr::where($all_relation_fields, function($value, $key) {
245
+            return isset($value['pivot']) && !$value['pivot'];
246 246
         });
247 247
     }
248 248
 
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
     {
256 256
         $all_relation_fields = $this->getRelationFields();
257 257
 
258
-        return Arr::where($all_relation_fields, function ($value, $key) {
258
+        return Arr::where($all_relation_fields, function($value, $key) {
259 259
             return isset($value['pivot']) && $value['pivot'];
260 260
         });
261 261
     }
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
      */
326 326
     private function modelMethodIsRelationship($model, $method)
327 327
     {
328
-        if (! method_exists($model, $method) && $model->isRelation($method)) {
328
+        if (!method_exists($model, $method) && $model->isRelation($method)) {
329 329
             return $method;
330 330
         }
331 331
 
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
         }
338 338
 
339 339
         // relationships are always public methods.
340
-        if (! $methodReflection->isPublic()) {
340
+        if (!$methodReflection->isPublic()) {
341 341
             return false;
342 342
         }
343 343
 
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
      */
365 365
     public function isAttributeInRelationString(array $field): bool
366 366
     {
367
-        if (! str_contains($field['entity'], '.')) {
367
+        if (!str_contains($field['entity'], '.')) {
368 368
             return false;
369 369
         }
370 370
 
Please login to merge, or discard this patch.
tests/Unit/CrudPanel/CrudPanelCreateTest.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
     public function testCreateWithOneToOneDynamicRelationship()
171 171
     {
172
-        User::resolveRelationUsing('dynamicRelation', function ($user) {
172
+        User::resolveRelationUsing('dynamicRelation', function($user) {
173 173
             return $user->hasOne(\Backpack\CRUD\Tests\config\Models\AccountDetails::class);
174 174
         });
175 175
         $this->crudPanel->setModel(User::class);
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 
281 281
     public function testCreateWithOneToManyDynamicRelationship()
282 282
     {
283
-        Article::resolveRelationUsing('dynamicRelation', function ($article) {
283
+        Article::resolveRelationUsing('dynamicRelation', function($article) {
284 284
             return $article->belongsTo(\Backpack\CRUD\Tests\config\Models\User::class, 'user_id');
285 285
         });
286 286
 
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
 
344 344
     public function testCreateWithManyToManyDynamicRelationship()
345 345
     {
346
-        User::resolveRelationUsing('dynamicRelation', function ($user) {
346
+        User::resolveRelationUsing('dynamicRelation', function($user) {
347 347
             return $user->belongsToMany(\Backpack\CRUD\Tests\config\Models\Role::class, 'user_role');
348 348
         });
349 349
 
@@ -933,7 +933,7 @@  discard block
 block discarded – undo
933 933
 
934 934
     public function testCreateBelongsToFake()
935 935
     {
936
-        $belongsToField = [   // select_grouped
936
+        $belongsToField = [// select_grouped
937 937
             'label' => 'Select_grouped',
938 938
             'type' => 'select_grouped', //https://github.com/Laravel-Backpack/CRUD/issues/502
939 939
             'name' => 'bang_relation_field',
@@ -1069,7 +1069,7 @@  discard block
 block discarded – undo
1069 1069
                 'nickname' => 'i_have_has_one',
1070 1070
                 'profile_picture' => 'ohh my picture 1.jpg',
1071 1071
                 'article' => 1,
1072
-                'addresses' => [ // HasOne is tested in other test function
1072
+                'addresses' => [// HasOne is tested in other test function
1073 1073
                     [
1074 1074
                         'city' => 2,
1075 1075
                         'street' => 'test',
@@ -1861,23 +1861,23 @@  discard block
 block discarded – undo
1861 1861
         $this->crudPanel->addField([
1862 1862
             'name' => 'name',
1863 1863
             'events' => [
1864
-                'created' => function ($entry) {
1864
+                'created' => function($entry) {
1865 1865
                 },
1866
-                'creating' => function ($entry) {
1866
+                'creating' => function($entry) {
1867 1867
                     $entry->email = '[email protected]';
1868 1868
                     $entry->password = Hash::make('password');
1869 1869
                 },
1870
-                'saving' => function ($entry) {
1870
+                'saving' => function($entry) {
1871 1871
                 },
1872
-                'saved' => function ($entry) {
1872
+                'saved' => function($entry) {
1873 1873
                 },
1874
-                'updating' => function ($entry) {
1874
+                'updating' => function($entry) {
1875 1875
                 },
1876
-                'updated' => function ($entry) {
1876
+                'updated' => function($entry) {
1877 1877
                 },
1878
-                'deleting' => function ($entry) {
1878
+                'deleting' => function($entry) {
1879 1879
                 },
1880
-                'deleted' => function ($entry) {
1880
+                'deleted' => function($entry) {
1881 1881
                 },
1882 1882
             ],
1883 1883
         ]);
@@ -1900,7 +1900,7 @@  discard block
 block discarded – undo
1900 1900
 
1901 1901
     public function testItCanCreateDynamicRelationships()
1902 1902
     {
1903
-        User::resolveRelationUsing('dynamicRelation', function ($user) {
1903
+        User::resolveRelationUsing('dynamicRelation', function($user) {
1904 1904
             return $user->belongsTo(\Backpack\CRUD\Tests\config\Models\Bang::class, 'bang_relation_field');
1905 1905
         });
1906 1906
 
Please login to merge, or discard this patch.