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 — 2.8 ( b9ed1f...cd67fa )
by Thorsten
15:59
created
phpmyfaq/inc/PMF/Auth/Sso.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
      * @param  string $login Loginname
109 109
      * @param  string $pass  Password
110 110
      * @return boolean
111
-    */
111
+     */
112 112
     public function changePassword($login, $pass)
113 113
     {
114 114
         $change = sprintf("
Please login to merge, or discard this patch.
phpmyfaq/inc/PMF/String/Abstract.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -73,14 +73,14 @@
 block discarded – undo
73 73
             return mb_detect_encoding($str, 'UTF-8', true);
74 74
         } else {
75 75
             $regex = '/^([\x00-\x7f]|'
76
-                   . '[\xc2-\xdf][\x80-\xbf]|'
77
-                   . '\xe0[\xa0-\xbf][\x80-\xbf]|'
78
-                   . '[\xe1-\xec][\x80-\xbf]{2}|'
79
-                   . '\xed[\x80-\x9f][\x80-\xbf]|'
80
-                   . '[\xee-\xef][\x80-\xbf]{2}|'
81
-                   . '\xf0[\x90-\xbf][\x80-\xbf]{2}|'
82
-                   . '[\xf1-\xf3][\x80-\xbf]{3}|'
83
-                   . '\xf4[\x80-\x8f][\x80-\xbf]{2})*$/';
76
+                    . '[\xc2-\xdf][\x80-\xbf]|'
77
+                    . '\xe0[\xa0-\xbf][\x80-\xbf]|'
78
+                    . '[\xe1-\xec][\x80-\xbf]{2}|'
79
+                    . '\xed[\x80-\x9f][\x80-\xbf]|'
80
+                    . '[\xee-\xef][\x80-\xbf]{2}|'
81
+                    . '\xf0[\x90-\xbf][\x80-\xbf]{2}|'
82
+                    . '[\xf1-\xf3][\x80-\xbf]{3}|'
83
+                    . '\xf4[\x80-\x8f][\x80-\xbf]{2})*$/';
84 84
             return preg_match($regex, $str) === 1;
85 85
         }
86 86
     }
Please login to merge, or discard this patch.