GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 8a0092...1959e6 )
by Steeven
02:16
created
src/Models/Options.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -220,16 +220,16 @@  discard block
 block discarded – undo
220 220
         $familyRelationships = [];
221 221
 
222 222
         foreach ([
223
-                     'PARENT',
224
-                     'CHILD',
225
-                     'SPOUSE',
226
-                     'SIBLING',
227
-                     'GRANDPARENTS',
228
-                     'GRANDCHILD',
229
-                     'PARENTS_SIBLING',
230
-                     'SIBLINGS_CHILD',
231
-                     'AUNTS_UNCLES_CHILD',
232
-                 ] as $relationship
223
+                        'PARENT',
224
+                        'CHILD',
225
+                        'SPOUSE',
226
+                        'SIBLING',
227
+                        'GRANDPARENTS',
228
+                        'GRANDCHILD',
229
+                        'PARENTS_SIBLING',
230
+                        'SIBLINGS_CHILD',
231
+                        'AUNTS_UNCLES_CHILD',
232
+                    ] as $relationship
233 233
         ) {
234 234
             $familyRelationships[ $relationship ] = $this->language->getLine($relationship);
235 235
         }
@@ -245,12 +245,12 @@  discard block
 block discarded – undo
245 245
         $statuses = [];
246 246
 
247 247
         foreach ([
248
-                     'PUBLISH',
249
-                     'UNPUBLISH',
250
-                     'DRAFT',
251
-                     'ARCHIVED',
252
-                     'TRASH',
253
-                 ] as $status
248
+                        'PUBLISH',
249
+                        'UNPUBLISH',
250
+                        'DRAFT',
251
+                        'ARCHIVED',
252
+                        'TRASH',
253
+                    ] as $status
254 254
         ) {
255 255
             $statuses[ $status ] = $this->language->getLine($status);
256 256
         }
@@ -269,10 +269,10 @@  discard block
 block discarded – undo
269 269
         $visibilities = [];
270 270
 
271 271
         foreach ([
272
-                     'PUBLIC',
273
-                     'PRIVATE',
274
-                     'MEMBER',
275
-                 ] as $visibility
272
+                        'PUBLIC',
273
+                        'PRIVATE',
274
+                        'MEMBER',
275
+                    ] as $visibility
276 276
         ) {
277 277
             $visibilities[ $visibility ] = $this->language->getLine($visibility);
278 278
         }
Please login to merge, or discard this patch.
src/Containers/Modules.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -487,11 +487,11 @@
 block discarded – undo
487 487
                 $moduleParentSegments = [];
488 488
 
489 489
                 foreach ([
490
-                             'apps',
491
-                             'modules',
492
-                             'components',
493
-                             'plugins',
494
-                         ] as $moduleType
490
+                                'apps',
491
+                                'modules',
492
+                                'components',
493
+                                'plugins',
494
+                            ] as $moduleType
495 495
                 ) {
496 496
                     if (false !== ($segmentKey = array_search($modularType, $moduleSegments))) {
497 497
                         $moduleParentSegments = array_slice($moduleSegments, 0, $segmentKey);
Please login to merge, or discard this patch.
src/Libraries/AccessControl/User.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -275,15 +275,15 @@  discard block
 block discarded – undo
275 275
                             } elseif ($authority->first()->permission === 'GRANTED') {
276 276
                                 // Access only granted cannot do modifier access
277 277
                                 foreach ([
278
-                                             'form',
279
-                                             'add',
280
-                                             'add-as-new',
281
-                                             'edit',
282
-                                             'update',
283
-                                             'insert',
284
-                                             'create',
285
-                                             'delete',
286
-                                         ] as $segment
278
+                                                'form',
279
+                                                'add',
280
+                                                'add-as-new',
281
+                                                'edit',
282
+                                                'update',
283
+                                                'insert',
284
+                                                'create',
285
+                                                'delete',
286
+                                            ] as $segment
287 287
                                 ) {
288 288
                                     if (in_array($segment, $segments)) {
289 289
                                         return false;
@@ -303,15 +303,15 @@  discard block
 block discarded – undo
303 303
                             } elseif ($authority->first()->permission === 'GRANTED') {
304 304
                                 // Access only granted cannot do modifier access
305 305
                                 foreach ([
306
-                                             'form',
307
-                                             'add',
308
-                                             'add-as-new',
309
-                                             'edit',
310
-                                             'update',
311
-                                             'insert',
312
-                                             'create',
313
-                                             'delete',
314
-                                         ] as $segment
306
+                                                'form',
307
+                                                'add',
308
+                                                'add-as-new',
309
+                                                'edit',
310
+                                                'update',
311
+                                                'insert',
312
+                                                'create',
313
+                                                'delete',
314
+                                            ] as $segment
315 315
                                 ) {
316 316
                                     if (in_array($segment, $segments)) {
317 317
                                         return false;
Please login to merge, or discard this patch.