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 ( 776629...deac27 )
by
unknown
03:03
created
src/Models/Options.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -170,16 +170,16 @@  discard block
 block discarded – undo
170 170
         $familyRelationships = [];
171 171
 
172 172
         foreach ([
173
-                     'PARENT',
174
-                     'CHILD',
175
-                     'SPOUSE',
176
-                     'SIBLING',
177
-                     'GRANDPARENTS',
178
-                     'GRANDCHILD',
179
-                     'PARENTS_SIBLING',
180
-                     'SIBLINGS_CHILD',
181
-                     'AUNTS_UNCLES_CHILD',
182
-                 ] as $relationship
173
+                        'PARENT',
174
+                        'CHILD',
175
+                        'SPOUSE',
176
+                        'SIBLING',
177
+                        'GRANDPARENTS',
178
+                        'GRANDCHILD',
179
+                        'PARENTS_SIBLING',
180
+                        'SIBLINGS_CHILD',
181
+                        'AUNTS_UNCLES_CHILD',
182
+                    ] as $relationship
183 183
         ) {
184 184
             $familyRelationships[ $relationship ]  = $this->language->getLine($relationship);
185 185
         }
@@ -192,12 +192,12 @@  discard block
 block discarded – undo
192 192
         $statuses = [];
193 193
 
194 194
         foreach ([
195
-                     'PUBLISH',
196
-                     'UNPUBLISH',
197
-                     'DRAFT',
198
-                     'ARCHIVED',
199
-                     'TRASH'
200
-                 ] as $status
195
+                        'PUBLISH',
196
+                        'UNPUBLISH',
197
+                        'DRAFT',
198
+                        'ARCHIVED',
199
+                        'TRASH'
200
+                    ] as $status
201 201
         ) {
202 202
             $statuses[ $status ]  = $this->language->getLine($status);
203 203
         }
@@ -210,10 +210,10 @@  discard block
 block discarded – undo
210 210
         $visibilities = [];
211 211
 
212 212
         foreach ([
213
-                     'PUBLIC',
214
-                     'PRIVATE',
215
-                     'MEMBER',
216
-                 ] as $visibility
213
+                        'PUBLIC',
214
+                        'PRIVATE',
215
+                        'MEMBER',
216
+                    ] as $visibility
217 217
         ) {
218 218
             $visibilities[ $visibility ]  = $this->language->getLine($visibility);
219 219
         }
Please login to merge, or discard this patch.