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 ( 731d0f...651d2c )
by Thorsten
29:16 queued 15:10
created
phpmyfaq/inc/PMF/Auth/Ldap.php 2 patches
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.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
         $bindLogin = $login;
179 179
         if ($this->_ldapConfig['ldap_use_domain_prefix']) {
180 180
             if (array_key_exists('domain', $optionalData)) {
181
-                $bindLogin = $optionalData['domain'] . '\\' . $login;
181
+                $bindLogin = $optionalData['domain'].'\\'.$login;
182 182
             }
183 183
         } else {
184 184
             $this->ldap = new PMF_Ldap($this->_config);
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
             htmlspecialchars_decode($password)
207 207
         );
208 208
 
209
-        if (! $this->ldap->bind($bindLogin, htmlspecialchars_decode($password))) {
209
+        if (!$this->ldap->bind($bindLogin, htmlspecialchars_decode($password))) {
210 210
             $this->errors[] = $this->ldap->error;
211 211
             return false;
212 212
         } else {
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.