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
Push — master ( 2363c9...1ec540 )
by Cristian
07:36 queued 02:11
created
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   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     /**
144 144
      * Move the most recently added column after the given target column.
145 145
      *
146
-     * @param string|array $targetColumn The target column name or array.
146
+     * @param string $targetColumn The target column name or array.
147 147
      */
148 148
     public function afterColumn($targetColumn)
149 149
     {
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 
163 163
     /**
164 164
      * Move this column to be first in the columns list.
165
-     * @return bool|null
165
+     * @return false|null
166 166
      */
167 167
     public function makeFirstColumn()
168 168
     {
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
     /**
282 282
      * Change attributes for multiple columns.
283 283
      *
284
-     * @param array $columns
284
+     * @param string[] $columns
285 285
      * @param array $attributes
286 286
      */
287 287
     public function setColumnsDetails($columns, $attributes)
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/CrudUsageStats.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      * Check if the application is running in normal conditions
11 11
      * (production env, not in console, not in unit tests).
12 12
      *
13
-     * @return void
13
+     * @return boolean
14 14
      */
15 15
     private function runningInProduction()
16 16
     {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      * @param  string $method  HTTP Method to use for the request.
87 87
      * @param  string $url     URL to point the request at.
88 88
      * @param  array $payload  The data you want sent to the URL.
89
-     * @return void
89
+     * @return boolean
90 90
      */
91 91
     private function makeCurlRequest($method, $url, $payload)
92 92
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     private function sendUsageStats()
39 39
     {
40 40
         // only send usage stats in production
41
-        if (! $this->runningInProduction()) {
41
+        if (!$this->runningInProduction()) {
42 42
             return;
43 43
         }
44 44
 
Please login to merge, or discard this patch.
src/resources/views/columns/array_count.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 <span>
3 3
     <?php
4 4
     $array = $entry->{$column['name']};
5
-    $suffix = isset($column['suffix'])?$column['suffix']:'items';
5
+    $suffix = isset($column['suffix']) ? $column['suffix'] : 'items';
6 6
 
7 7
     // the value should be an array wether or not attribute casting is used
8 8
     if (!is_array($array)) {
Please login to merge, or discard this patch.
tests/Unit/CrudPanel/CrudPanelTabsTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Backpack\CRUD\Tests\Unit\CrudPanel;
4 4
 
5
-use Illuminate\Support\Facades\DB;
6 5
 use Backpack\CRUD\Tests\Unit\Models\Article;
6
+use Illuminate\Support\Facades\DB;
7 7
 
8 8
 class CrudPanelTabsTest extends BaseDBCrudPanelTest
9 9
 {
Please login to merge, or discard this patch.
src/PanelTraits/Tabs.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public function tabsDisabled()
37 37
     {
38
-        return ! $this->tabsEnabled;
38
+        return !$this->tabsEnabled;
39 39
     }
40 40
 
41 41
     public function setTabsType($type)
@@ -116,8 +116,8 @@  discard block
 block discarded – undo
116 116
     {
117 117
         $all_fields = $this->getCurrentFields();
118 118
 
119
-        $fields_without_a_tab = collect($all_fields)->filter(function ($value, $key) {
120
-            return ! isset($value['tab']);
119
+        $fields_without_a_tab = collect($all_fields)->filter(function($value, $key) {
120
+            return !isset($value['tab']);
121 121
         });
122 122
 
123 123
         return $fields_without_a_tab;
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         if ($this->tabExists($label)) {
134 134
             $all_fields = $this->getCurrentFields();
135 135
 
136
-            $fields_for_current_tab = collect($all_fields)->filter(function ($value, $key) use ($label) {
136
+            $fields_for_current_tab = collect($all_fields)->filter(function($value, $key) use ($label) {
137 137
                 return isset($value['tab']) && $value['tab'] == $label;
138 138
             });
139 139
 
@@ -152,11 +152,11 @@  discard block
 block discarded – undo
152 152
         $fields = $this->getCurrentFields();
153 153
 
154 154
         $fields_with_tabs = collect($fields)
155
-            ->filter(function ($value, $key) {
155
+            ->filter(function($value, $key) {
156 156
                 return isset($value['tab']);
157 157
             })
158
-            ->each(function ($value, $key) use (&$tabs) {
159
-                if (! in_array($value['tab'], $tabs)) {
158
+            ->each(function($value, $key) use (&$tabs) {
159
+                if (!in_array($value['tab'], $tabs)) {
160 160
                     $tabs[] = $value['tab'];
161 161
                 }
162 162
             });
Please login to merge, or discard this patch.