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 ( 4032bb...90a43b )
by Steeven
02:53
created
src/Models/Options.php 1 patch
Indentation   +23 added lines, -23 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,13 +245,13 @@  discard block
 block discarded – undo
245 245
         $statuses = [];
246 246
 
247 247
         foreach ([
248
-                     'PUBLISH',
249
-                     'UNPUBLISH',
250
-                     'DRAFT',
251
-                     'ARCHIVED',
252
-                     'DELETED',
253
-                     'LOCKED'
254
-                 ] as $status
248
+                        'PUBLISH',
249
+                        'UNPUBLISH',
250
+                        'DRAFT',
251
+                        'ARCHIVED',
252
+                        'DELETED',
253
+                        'LOCKED'
254
+                    ] as $status
255 255
         ) {
256 256
             $statuses[ $status ] = $this->language->getLine($status);
257 257
         }
@@ -270,12 +270,12 @@  discard block
 block discarded – undo
270 270
         $visibilities = [];
271 271
 
272 272
         foreach ([
273
-                     'PUBLIC',
274
-                     'PROTECTED',
275
-                     'PRIVATE',
276
-                     'READONLY',
277
-                     'MEMBERONLY',
278
-                 ] as $visibility
273
+                        'PUBLIC',
274
+                        'PROTECTED',
275
+                        'PRIVATE',
276
+                        'READONLY',
277
+                        'MEMBERONLY',
278
+                    ] as $visibility
279 279
         ) {
280 280
             $visibilities[ $visibility ] = $this->language->getLine($visibility);
281 281
         }
Please login to merge, or discard this patch.