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

Completed
Branch master (6f28f0)
by Cristian
03:05
created
src/Crud.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
 
285 285
         foreach ($fields as $k => $field) {
286 286
             // set the value
287
-            if (! isset($fields[$k]['value'])) {
287
+            if (!isset($fields[$k]['value'])) {
288 288
                 if (isset($field['subfields'])) {
289 289
                     $fields[$k]['value'] = [];
290 290
                     foreach ($field['subfields'] as $key => $subfield) {
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
      */
419 419
     public function hasAccess($permission)
420 420
     {
421
-        if (! in_array($permission, $this->access)) {
421
+        if (!in_array($permission, $this->access)) {
422 422
             return false;
423 423
         }
424 424
 
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
     public function hasAccessToAll($permission_array)
454 454
     {
455 455
         foreach ($permission_array as $key => $permission) {
456
-            if (! in_array($permission, $this->access)) {
456
+            if (!in_array($permission, $this->access)) {
457 457
                 return false;
458 458
             }
459 459
         }
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
      */
471 471
     public function hasAccessOrFail($permission)
472 472
     {
473
-        if (! in_array($permission, $this->access)) {
473
+        if (!in_array($permission, $this->access)) {
474 474
             abort(403, trans('backpack::crud.unauthorized_access'));
475 475
         }
476 476
     }
@@ -493,7 +493,7 @@  discard block
 block discarded – undo
493 493
      */
494 494
     public function setModel($model_namespace)
495 495
     {
496
-        if (! class_exists($model_namespace)) {
496
+        if (!class_exists($model_namespace)) {
497 497
             throw new \Exception('This model does not exist.', 404);
498 498
         }
499 499
 
@@ -537,7 +537,7 @@  discard block
 block discarded – undo
537 537
     {
538 538
         $complete_route = $route.'.index';
539 539
 
540
-        if (! \Route::has($complete_route)) {
540
+        if (!\Route::has($complete_route)) {
541 541
             throw new \Exception('There are no routes for this route name.', 404);
542 542
         }
543 543
 
@@ -623,7 +623,7 @@  discard block
 block discarded – undo
623 623
     public function addColumn($column)
624 624
     {
625 625
         // if a string was passed, not an array, change it to an array
626
-        if (! is_array($column)) {
626
+        if (!is_array($column)) {
627 627
             $column = ['name' => $column];
628 628
         }
629 629
 
@@ -674,7 +674,7 @@  discard block
 block discarded – undo
674 674
      */
675 675
     public function addDefaultLabel($array)
676 676
     {
677
-        if (! array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) {
677
+        if (!array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) {
678 678
             $array = array_merge(['label' => ucfirst($this->makeLabel($array['name']))], $array);
679 679
 
680 680
             return $array;
@@ -705,8 +705,8 @@  discard block
 block discarded – undo
705 705
 
706 706
     public function remove($entity, $fields)
707 707
     {
708
-        return array_values(array_filter($this->{$entity}, function ($field) use ($fields) {
709
-            return ! in_array($field['name'], (array) $fields);
708
+        return array_values(array_filter($this->{$entity}, function($field) use ($fields) {
709
+            return !in_array($field['name'], (array) $fields);
710 710
         }));
711 711
     }
712 712
 
@@ -771,12 +771,12 @@  discard block
 block discarded – undo
771 771
         }
772 772
 
773 773
         // if the label is missing, we should set it
774
-        if (! isset($complete_field_array['label'])) {
774
+        if (!isset($complete_field_array['label'])) {
775 775
             $complete_field_array['label'] = ucfirst($complete_field_array['name']);
776 776
         }
777 777
 
778 778
         // if the field type is missing, we should set it
779
-        if (! isset($complete_field_array['type'])) {
779
+        if (!isset($complete_field_array['type'])) {
780 780
             $complete_field_array['type'] = $this->getFieldTypeFromDbColumnType($complete_field_array['name']);
781 781
         }
782 782
 
@@ -838,7 +838,7 @@  discard block
 block discarded – undo
838 838
      */
839 839
     public function removeFields($array_of_names, $form = 'both')
840 840
     {
841
-        if (! empty($array_of_names)) {
841
+        if (!empty($array_of_names)) {
842 842
             foreach ($array_of_names as $name) {
843 843
                 $this->removeField($name, $form);
844 844
             }
@@ -969,7 +969,7 @@  discard block
 block discarded – undo
969 969
     {
970 970
         $this->getDbColumnTypes();
971 971
 
972
-        array_map(function ($field) {
972
+        array_map(function($field) {
973 973
             // $this->labels[$field] = $this->makeLabel($field);
974 974
 
975 975
             $new_field = [
@@ -983,7 +983,7 @@  discard block
 block discarded – undo
983 983
             $this->create_fields[] = $new_field;
984 984
             $this->update_fields[] = $new_field;
985 985
 
986
-            if (! in_array($field, $this->model->getHidden())) {
986
+            if (!in_array($field, $this->model->getHidden())) {
987 987
                 $this->columns[] = [
988 988
                                     'name'  => $field,
989 989
                                     'label' => ucfirst($field),
@@ -1016,7 +1016,7 @@  discard block
 block discarded – undo
1016 1016
      */
1017 1017
     public function getFieldTypeFromDbColumnType($field)
1018 1018
     {
1019
-        if (! array_key_exists($field, $this->field_types)) {
1019
+        if (!array_key_exists($field, $this->field_types)) {
1020 1020
             return 'text';
1021 1021
         }
1022 1022
 
@@ -1097,7 +1097,7 @@  discard block
 block discarded – undo
1097 1097
         $columns = \Schema::getColumnListing($this->model->getTable());
1098 1098
         $fillable = $this->model->getFillable();
1099 1099
 
1100
-        if (! empty($fillable)) {
1100
+        if (!empty($fillable)) {
1101 1101
             $columns = array_intersect($columns, $fillable);
1102 1102
         }
1103 1103
 
@@ -1145,7 +1145,7 @@  discard block
 block discarded – undo
1145 1145
                     // remove the fake field
1146 1146
                     array_pull($request, $fields[$k]['name']);
1147 1147
 
1148
-                    if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
1148
+                    if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
1149 1149
                         array_push($fake_field_columns_to_encode, $fields[$k]['store_in']);
1150 1150
                     }
1151 1151
                 } else {
@@ -1156,7 +1156,7 @@  discard block
 block discarded – undo
1156 1156
                     // remove the fake field
1157 1157
                     array_pull($request, $fields[$k]['name']);
1158 1158
 
1159
-                    if (! in_array('extras', $fake_field_columns_to_encode, true)) {
1159
+                    if (!in_array('extras', $fake_field_columns_to_encode, true)) {
1160 1160
                         array_push($fake_field_columns_to_encode, 'extras');
1161 1161
                     }
1162 1162
                 }
@@ -1199,20 +1199,20 @@  discard block
 block discarded – undo
1199 1199
             if (isset($fields[$k]['fake']) && $fields[$k]['fake'] == true) {
1200 1200
                 // add it to the request in its appropriate variable - the one defined, if defined
1201 1201
                 if (isset($fields[$k]['store_in'])) {
1202
-                    if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
1202
+                    if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
1203 1203
                         array_push($fake_field_columns_to_encode, $fields[$k]['store_in']);
1204 1204
                     }
1205 1205
                 } else {
1206 1206
                     //otherwise in the one defined in the $crud variable
1207 1207
 
1208
-                    if (! in_array('extras', $fake_field_columns_to_encode, true)) {
1208
+                    if (!in_array('extras', $fake_field_columns_to_encode, true)) {
1209 1209
                         array_push($fake_field_columns_to_encode, 'extras');
1210 1210
                     }
1211 1211
                 }
1212 1212
             }
1213 1213
         }
1214 1214
 
1215
-        if (! count($fake_field_columns_to_encode)) {
1215
+        if (!count($fake_field_columns_to_encode)) {
1216 1216
             return ['extras'];
1217 1217
         }
1218 1218
 
@@ -1233,7 +1233,7 @@  discard block
 block discarded – undo
1233 1233
      */
1234 1234
     public function getFirstOfItsTypeInArray($type, $array)
1235 1235
     {
1236
-        return array_first($array, function ($key, $item) use ($type) {
1236
+        return array_first($array, function($key, $item) use ($type) {
1237 1237
             return $item['type'] == $type;
1238 1238
         });
1239 1239
     }
@@ -1270,7 +1270,7 @@  discard block
 block discarded – undo
1270 1270
 
1271 1271
     public function showButtons()
1272 1272
     {
1273
-        return ! empty($this->buttons) && ! (count($this->buttons) == 1 && array_key_exists('add', $this->buttons));
1273
+        return !empty($this->buttons) && !(count($this->buttons) == 1 && array_key_exists('add', $this->buttons));
1274 1274
     }
1275 1275
 
1276 1276
     public function initButtons()
@@ -1309,8 +1309,8 @@  discard block
 block discarded – undo
1309 1309
 
1310 1310
     public function sync($type, $fields, $attributes)
1311 1311
     {
1312
-        if (! empty($this->{$type})) {
1313
-            $this->{$type} = array_map(function ($field) use ($fields, $attributes) {
1312
+        if (!empty($this->{$type})) {
1313
+            $this->{$type} = array_map(function($field) use ($fields, $attributes) {
1314 1314
                 if (in_array($field['name'], (array) $fields)) {
1315 1315
                     $field = array_merge($field, $attributes);
1316 1316
                 }
@@ -1336,8 +1336,8 @@  discard block
 block discarded – undo
1336 1336
                 }
1337 1337
             }
1338 1338
 
1339
-            return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function ($item) use ($items) {
1340
-                return ! in_array($item['name'], $this->sort[$items]);
1339
+            return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use ($items) {
1340
+                return !in_array($item['name'], $this->sort[$items]);
1341 1341
             }));
1342 1342
         }
1343 1343
 
Please login to merge, or discard this patch.