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 ( 602110...9e304b )
by Steeven
02:47
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.