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 (#1558)
by Cristian
09:52
created
src/PanelTraits/RequiredFields.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 isRequired($inputName, $operation)
44 44
     {
45
-        if (! isset($this->requiredFields[$operation])) {
45
+        if (!isset($this->requiredFields[$operation])) {
46 46
             return false;
47 47
         }
48 48
 
Please login to merge, or discard this patch.
src/PanelTraits/Columns.php 2 patches
Spacing   +16 added lines, -17 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     public function addColumn($column)
67 67
     {
68 68
         // if a string was passed, not an array, change it to an array
69
-        if (! is_array($column)) {
69
+        if (!is_array($column)) {
70 70
             $column = ['name' => $column];
71 71
         }
72 72
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         $column_with_details = $this->addDefaultLabel($column);
75 75
 
76 76
         // make sure the column has a name
77
-        if (! array_key_exists('name', $column_with_details)) {
77
+        if (!array_key_exists('name', $column_with_details)) {
78 78
             $column_with_details['name'] = 'anonymous_column_'.str_random(5);
79 79
         }
80 80
 
@@ -82,27 +82,27 @@  discard block
 block discarded – undo
82 82
         $columnExistsInDb = $this->hasColumn($this->model->getTable(), $column_with_details['name']);
83 83
 
84 84
         // make sure the column has a type
85
-        if (! array_key_exists('type', $column_with_details)) {
85
+        if (!array_key_exists('type', $column_with_details)) {
86 86
             $column_with_details['type'] = 'text';
87 87
         }
88 88
 
89 89
         // make sure the column has a key
90
-        if (! array_key_exists('key', $column_with_details)) {
90
+        if (!array_key_exists('key', $column_with_details)) {
91 91
             $column_with_details['key'] = $column_with_details['name'];
92 92
         }
93 93
 
94 94
         // make sure the column has a tableColumn boolean
95
-        if (! array_key_exists('tableColumn', $column_with_details)) {
95
+        if (!array_key_exists('tableColumn', $column_with_details)) {
96 96
             $column_with_details['tableColumn'] = $columnExistsInDb ? true : false;
97 97
         }
98 98
 
99 99
         // make sure the column has a orderable boolean
100
-        if (! array_key_exists('orderable', $column_with_details)) {
100
+        if (!array_key_exists('orderable', $column_with_details)) {
101 101
             $column_with_details['orderable'] = $columnExistsInDb ? true : false;
102 102
         }
103 103
 
104 104
         // make sure the column has a searchLogic
105
-        if (! array_key_exists('searchLogic', $column_with_details)) {
105
+        if (!array_key_exists('searchLogic', $column_with_details)) {
106 106
             $column_with_details['searchLogic'] = $columnExistsInDb ? true : false;
107 107
         }
108 108
 
@@ -110,14 +110,14 @@  discard block
 block discarded – undo
110 110
 
111 111
         // make sure the column has a priority in terms of visibility
112 112
         // if no priority has been defined, use the order in the array plus one
113
-        if (! array_key_exists('priority', $column_with_details)) {
113
+        if (!array_key_exists('priority', $column_with_details)) {
114 114
             $position_in_columns_array = (int) array_search($column_with_details['key'], array_keys($this->columns));
115 115
             $this->columns[$column_with_details['key']]['priority'] = $position_in_columns_array + 1;
116 116
         }
117 117
 
118 118
         // if this is a relation type field and no corresponding model was specified, get it from the relation method
119 119
         // defined in the main model
120
-        if (isset($column_with_details['entity']) && ! isset($column_with_details['model'])) {
120
+        if (isset($column_with_details['entity']) && !isset($column_with_details['model'])) {
121 121
             $column_with_details['model'] = $this->getRelationModel($column_with_details['entity']);
122 122
         }
123 123
 
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
      */
164 164
     public function makeFirstColumn()
165 165
     {
166
-        if (! $this->columns) {
166
+        if (!$this->columns) {
167 167
             return false;
168 168
         }
169 169
 
@@ -184,8 +184,7 @@  discard block
 block discarded – undo
184 184
         $targetColumnName = is_array($targetColumn) ? $targetColumn['name'] : $targetColumn;
185 185
 
186 186
         if (array_key_exists($targetColumnName, $this->columns)) {
187
-            $targetColumnPosition = $before ? array_search($targetColumnName, array_keys($this->columns)) :
188
-                array_search($targetColumnName, array_keys($this->columns)) + 1;
187
+            $targetColumnPosition = $before ? array_search($targetColumnName, array_keys($this->columns)) : array_search($targetColumnName, array_keys($this->columns)) + 1;
189 188
 
190 189
             $element = array_pop($this->columns);
191 190
             $beginningPart = array_slice($this->columns, 0, $targetColumnPosition, true);
@@ -219,7 +218,7 @@  discard block
 block discarded – undo
219 218
      */
220 219
     public function addDefaultLabel($array)
221 220
     {
222
-        if (! array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) {
221
+        if (!array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) {
223 222
             $array = array_merge(['label' => ucfirst($this->makeLabel($array['name']))], $array);
224 223
 
225 224
             return $array;
@@ -245,7 +244,7 @@  discard block
 block discarded – undo
245 244
      */
246 245
     public function removeColumns($columns)
247 246
     {
248
-        if (! empty($columns)) {
247
+        if (!empty($columns)) {
249 248
             foreach ($columns as $columnName) {
250 249
                 $this->removeColumn($columnName);
251 250
             }
@@ -266,8 +265,8 @@  discard block
 block discarded – undo
266 265
      */
267 266
     public function remove($entity, $fields)
268 267
     {
269
-        return array_values(array_filter($this->{$entity}, function ($field) use ($fields) {
270
-            return ! in_array($field['name'], (array) $fields);
268
+        return array_values(array_filter($this->{$entity}, function($field) use ($fields) {
269
+            return !in_array($field['name'], (array) $fields);
271 270
         }));
272 271
     }
273 272
 
@@ -312,7 +311,7 @@  discard block
 block discarded – undo
312 311
     {
313 312
         $columns = $this->getColumns();
314 313
 
315
-        return collect($columns)->pluck('entity')->reject(function ($value, $key) {
314
+        return collect($columns)->pluck('entity')->reject(function($value, $key) {
316 315
             return $value == null;
317 316
         })->toArray();
318 317
     }
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@
 block discarded – undo
141 141
     /**
142 142
      * Move the most recently added column after the given target column.
143 143
      *
144
-     * @param string|array $targetColumn The target column name or array.
144
+     * @param string $targetColumn The target column name or array.
145 145
      */
146 146
     public function afterColumn($targetColumn)
147 147
     {
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/Reorder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
     {
175 175
         $this->crud->hasAccessOrFail('reorder');
176 176
 
177
-        if (! $this->crud->isReorderEnabled()) {
177
+        if (!$this->crud->isReorderEnabled()) {
178 178
             abort(403, 'Reorder is disabled.');
179 179
         }
180 180
 
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/Revisions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         $this->crud->hasAccessOrFail('revisions');
42 42
 
43 43
         $revisionId = \Request::input('revision_id', false);
44
-        if (! $revisionId) {
44
+        if (!$revisionId) {
45 45
             abort(500, 'Can\'t restore revision without revision_id');
46 46
         } else {
47 47
             $this->crud->restoreRevision($id, $revisionId); // do the update
Please login to merge, or discard this patch.
src/app/Http/Controllers/Operations/SaveActions.php 1 patch
Spacing   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,11 +22,11 @@  discard block
 block discarded – undo
22 22
 
23 23
         $saveOptions = collect($permissions)
24 24
             // Restrict list to allowed actions.
25
-            ->filter(function ($action, $permission) {
25
+            ->filter(function($action, $permission) {
26 26
                 return $this->crud->hasAccess($permission);
27 27
             })
28 28
             // Generate list of possible actions.
29
-            ->mapWithKeys(function ($action, $permission) {
29
+            ->mapWithKeys(function($action, $permission) {
30 30
                 return [$action => $this->getSaveActionButtonName($action)];
31 31
             })
32 32
             ->all();
@@ -61,8 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function setSaveAction($forceSaveAction = null)
63 63
     {
64
-        $saveAction = $forceSaveAction ?:
65
-            \Request::input('save_action', config('backpack.crud.default_save_action', 'save_and_back'));
64
+        $saveAction = $forceSaveAction ?: \Request::input('save_action', config('backpack.crud.default_save_action', 'save_and_back'));
66 65
 
67 66
         if (config('backpack.crud.show_save_action_change', true) &&
68 67
             session('save_action', 'save_and_back') !== $saveAction) {
Please login to merge, or discard this patch.
src/CrudServiceProvider.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
      * Check if the application is running in normal conditions
124 124
      * (production env, not in console, not in unit tests).
125 125
      *
126
-     * @return void
126
+     * @return false|null
127 127
      */
128 128
     private function runningInProduction()
129 129
     {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     public function register()
86 86
     {
87
-        $this->app->bind('CRUD', function ($app) {
87
+        $this->app->bind('CRUD', function($app) {
88 88
             return new CRUD($app);
89 89
         });
90 90
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         $this->commands($this->commands);
93 93
 
94 94
         // map the elfinder prefix
95
-        if (! \Config::get('elfinder.route.prefix')) {
95
+        if (!\Config::get('elfinder.route.prefix')) {
96 96
             \Config::set('elfinder.route.prefix', \Config::get('backpack.base.route_prefix').'/elfinder');
97 97
         }
98 98
     }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     {
113 113
         $crudPubPath = public_path('vendor/backpack/crud');
114 114
 
115
-        if (! is_dir($crudPubPath)) {
115
+        if (!is_dir($crudPubPath)) {
116 116
             return true;
117 117
         }
118 118
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     private function sendUsageStats()
152 152
     {
153 153
         // only do this in production
154
-        if (! $this->runningInProduction()) {
154
+        if (!$this->runningInProduction()) {
155 155
             return;
156 156
         }
157 157
 
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Backpack\CRUD;
4 4
 
5
-use Route;
6 5
 use GuzzleHttp\Client;
7 6
 use Illuminate\Support\ServiceProvider;
8 7
 
Please login to merge, or discard this patch.