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.
Completed
Pull Request — 3.x (#2122)
by Rob
02:19
created
Slim/Http/Request.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 
200 200
         $this->registerMediaTypeParser('application/xml', function ($input) {
201 201
             $backup = libxml_disable_entity_loader(true);
202
-            $backup_errors = libxml_use_internal_errors(TRUE);
202
+            $backup_errors = libxml_use_internal_errors(true);
203 203
             $result = simplexml_load_string($input);
204 204
             libxml_disable_entity_loader($backup);
205 205
             libxml_clear_errors();
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 
213 213
         $this->registerMediaTypeParser('text/xml', function ($input) {
214 214
             $backup = libxml_disable_entity_loader(true);
215
-            $backup_errors = libxml_use_internal_errors(TRUE);
215
+            $backup_errors = libxml_use_internal_errors(true);
216 216
             $result = simplexml_load_string($input);
217 217
             libxml_disable_entity_loader($backup);
218 218
             libxml_clear_errors();
Please login to merge, or discard this patch.