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.
Passed
Branch master (439ea1)
by Steven
03:53
created
src/HtpasswdManager/Service/HtpasswdService.php 2 patches
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.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -104,6 +104,9 @@
 block discarded – undo
104 104
         return $usernameDeleted;
105 105
     }
106 106
 
107
+    /**
108
+     * @param string $newContent
109
+     */
107 110
     private function replaceHtPasswdContent($newContent) {
108 111
         $fp = fopen($this->filename, 'w');
109 112
         fwrite($fp, $newContent);
Please login to merge, or discard this patch.