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 ( cd67fa...dbd37f )
by Thorsten
14:11
created
phpmyfaq/inc/PMF/Auth/Ldap.php 1 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.