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 — master ( 1cd82a...439ea1 )
by Steven
03:08
created
src/HtpasswdManager/Service/HtpasswdService.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,8 +115,9 @@
 block discarded – undo
115 115
     public function userExists($username) {
116 116
         $userList = $this->getUserList();
117 117
 
118
-        if (isset ($userList [$username]))
119
-            return true;
118
+        if (isset ($userList [$username])) {
119
+                    return true;
120
+        }
120 121
 
121 122
         return false;
122 123
     }
Please login to merge, or discard this patch.