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
Pull Request — master (#46)
by Mathieu
03:33
created
src/PanelTraits/Update.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
         foreach ($fields as $k => $field) {
45 45
             // set the value
46
-            if (! isset($fields[$k]['value'])) {
46
+            if (!isset($fields[$k]['value'])) {
47 47
                 if (isset($field['subfields'])) {
48 48
                     $fields[$k]['value'] = [];
49 49
                     foreach ($field['subfields'] as $key => $subfield) {
Please login to merge, or discard this patch.
src/PanelTraits/Fields.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@  discard block
 block discarded – undo
27 27
         }
28 28
 
29 29
         // if the label is missing, we should set it
30
-        if (! isset($complete_field_array['label'])) {
30
+        if (!isset($complete_field_array['label'])) {
31 31
             $complete_field_array['label'] = ucfirst($complete_field_array['name']);
32 32
         }
33 33
 
34 34
         // if the field type is missing, we should set it
35
-        if (! isset($complete_field_array['type'])) {
35
+        if (!isset($complete_field_array['type'])) {
36 36
             $complete_field_array['type'] = $this->getFieldTypeFromDbColumnType($complete_field_array['name']);
37 37
         }
38 38
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     public function removeFields($array_of_names, $form = 'both')
96 96
     {
97
-        if (! empty($array_of_names)) {
97
+        if (!empty($array_of_names)) {
98 98
             foreach ($array_of_names as $name) {
99 99
                 $this->removeField($name, $form);
100 100
             }
Please login to merge, or discard this patch.
src/PanelTraits/Columns.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     public function addColumn($column)
56 56
     {
57 57
         // if a string was passed, not an array, change it to an array
58
-        if (! is_array($column)) {
58
+        if (!is_array($column)) {
59 59
             $column = ['name' => $column];
60 60
         }
61 61
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      */
107 107
     public function addDefaultLabel($array)
108 108
     {
109
-        if (! array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) {
109
+        if (!array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) {
110 110
             $array = array_merge(['label' => ucfirst($this->makeLabel($array['name']))], $array);
111 111
 
112 112
             return $array;
@@ -137,8 +137,8 @@  discard block
 block discarded – undo
137 137
 
138 138
     public function remove($entity, $fields)
139 139
     {
140
-        return array_values(array_filter($this->{$entity}, function ($field) use ($fields) {
141
-            return ! in_array($field['name'], (array) $fields);
140
+        return array_values(array_filter($this->{$entity}, function($field) use ($fields) {
141
+            return !in_array($field['name'], (array) $fields);
142 142
         }));
143 143
     }
144 144
 
Please login to merge, or discard this patch.
src/PanelTraits/Access.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      */
32 32
     public function hasAccess($permission)
33 33
     {
34
-        if (! in_array($permission, $this->access)) {
34
+        if (!in_array($permission, $this->access)) {
35 35
             return false;
36 36
         }
37 37
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     public function hasAccessToAll($permission_array)
67 67
     {
68 68
         foreach ($permission_array as $key => $permission) {
69
-            if (! in_array($permission, $this->access)) {
69
+            if (!in_array($permission, $this->access)) {
70 70
                 return false;
71 71
             }
72 72
         }
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      */
84 84
     public function hasAccessOrFail($permission)
85 85
     {
86
-        if (! in_array($permission, $this->access)) {
86
+        if (!in_array($permission, $this->access)) {
87 87
             abort(403, trans('backpack::crud.unauthorized_access'));
88 88
         }
89 89
     }
Please login to merge, or discard this patch.
src/PanelTraits/Buttons.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 
43 43
     public function showButtons()
44 44
     {
45
-        return ! empty($this->buttons) && ! (count($this->buttons) == 1 && array_key_exists('add', $this->buttons));
45
+        return !empty($this->buttons) && !(count($this->buttons) == 1 && array_key_exists('add', $this->buttons));
46 46
     }
47 47
 
48 48
     public function initButtons()
Please login to merge, or discard this patch.
src/PanelTraits/FakeColumns.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,20 +29,20 @@
 block discarded – undo
29 29
             if (isset($fields[$k]['fake']) && $fields[$k]['fake'] == true) {
30 30
                 // add it to the request in its appropriate variable - the one defined, if defined
31 31
                 if (isset($fields[$k]['store_in'])) {
32
-                    if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
32
+                    if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
33 33
                         array_push($fake_field_columns_to_encode, $fields[$k]['store_in']);
34 34
                     }
35 35
                 } else {
36 36
                     //otherwise in the one defined in the $crud variable
37 37
 
38
-                    if (! in_array('extras', $fake_field_columns_to_encode, true)) {
38
+                    if (!in_array('extras', $fake_field_columns_to_encode, true)) {
39 39
                         array_push($fake_field_columns_to_encode, 'extras');
40 40
                     }
41 41
                 }
42 42
             }
43 43
         }
44 44
 
45
-        if (! count($fake_field_columns_to_encode)) {
45
+        if (!count($fake_field_columns_to_encode)) {
46 46
             return ['extras'];
47 47
         }
48 48
 
Please login to merge, or discard this patch.
src/PanelTraits/FakeFields.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
                     // remove the fake field
42 42
                     array_pull($request, $fields[$k]['name']);
43 43
 
44
-                    if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
44
+                    if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
45 45
                         array_push($fake_field_columns_to_encode, $fields[$k]['store_in']);
46 46
                     }
47 47
                 } else {
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
                     // remove the fake field
53 53
                     array_pull($request, $fields[$k]['name']);
54 54
 
55
-                    if (! in_array('extras', $fake_field_columns_to_encode, true)) {
55
+                    if (!in_array('extras', $fake_field_columns_to_encode, true)) {
56 56
                         array_push($fake_field_columns_to_encode, 'extras');
57 57
                     }
58 58
                 }
Please login to merge, or discard this patch.
src/PanelTraits/AutoSet.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     {
17 17
         $this->getDbColumnTypes();
18 18
 
19
-        array_map(function ($field) {
19
+        array_map(function($field) {
20 20
             // $this->labels[$field] = $this->makeLabel($field);
21 21
 
22 22
             $new_field = [
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function getFieldTypeFromDbColumnType($field)
66 66
     {
67
-        if (! array_key_exists($field, $this->field_types)) {
67
+        if (!array_key_exists($field, $this->field_types)) {
68 68
             return 'text';
69 69
         }
70 70
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         $columns = \Schema::getColumnListing($this->model->getTable());
146 146
         $fillable = $this->model->getFillable();
147 147
 
148
-        if (! empty($fillable)) {
148
+        if (!empty($fillable)) {
149 149
             $columns = array_intersect($columns, $fillable);
150 150
         }
151 151
 
Please login to merge, or discard this patch.