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 develop (439ea1)
by Steven
03:12
created
src/HtpasswdManager/Controller/UserController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
      * Returns true if valid, of not it returns a string with information about the reason
155 155
      *
156 156
      * @param string $username
157
-     * @return boolean string
157
+     * @return string|boolean string
158 158
      */
159 159
     private function isUsernameValid($username) {
160 160
         if (strlen($username) <= 2)
Please login to merge, or discard this patch.
src/HtpasswdManager/Service/HtpasswdService.php 1 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.