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
Push — 3.0 ( a9fc80...fa65d5 )
by Vermeulen
01:46
created
install/class/ModuleInstall.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -339,7 +339,7 @@
 block discarded – undo
339 339
      */
340 340
     protected static function removeDirectory($dirPath)
341 341
     {
342
-        $calledClass  = get_called_class(); //Autorize extends this class
342
+        $calledClass = get_called_class(); //Autorize extends this class
343 343
         
344 344
         $dir = opendir($dirPath);
345 345
         if ($dir === false) {
Please login to merge, or discard this patch.
src/class/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
          * End "en" (preference 0.4/1)
200 200
          **/
201 201
         
202
-        $acceptLanguage  = $this->serverValue('HTTP_ACCEPT_LANGUAGE');
202
+        $acceptLanguage = $this->serverValue('HTTP_ACCEPT_LANGUAGE');
203 203
         if (empty($acceptLanguage)) {
204 204
             $this->lang = '';
205 205
             return;
Please login to merge, or discard this patch.
src/helpers/Cli.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
      * 
201 201
      * @return boolean|array
202 202
      */
203
-    public static function getopt($options , $longopts = [])
203
+    public static function getopt($options, $longopts = [])
204 204
     {
205 205
         if (strpos($options, 'f:') === false) {
206 206
             $options .= 'f:';
Please login to merge, or discard this patch.