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 (99571d)
by Steven
04:15
created
src/HtpasswdManager/Controller/UserController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 	 * Returns true if valid, of not it returns a String with information about the reason
153 153
 	 *
154 154
 	 * @param string $username        	
155
-	 * @return boolean string
155
+	 * @return string|boolean string
156 156
 	 */
157 157
 	private function isUsernameValid($username) {
158 158
 		if (strlen ( $username ) <= 2)
@@ -167,7 +167,6 @@  discard block
 block discarded – undo
167 167
 	/**
168 168
 	 * Returns true if valid, of not it returns a String with information about the reason
169 169
 	 *
170
-	 * @param string $username        	
171 170
 	 * @return boolean string
172 171
 	 */
173 172
 	private function isPasswordValid($password) {
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
@@ -108,6 +108,9 @@
 block discarded – undo
108 108
 		return $usernameDeleted;
109 109
 	}
110 110
 
111
+	/**
112
+	 * @param string $newContent
113
+	 */
111 114
 	private function replaceHtPasswdContent($newContent) {
112 115
 		// file_put_contents ( $this->filename, $newContent );
113 116
 		$fp = fopen ( $this->filename, 'w' );
Please login to merge, or discard this patch.
src/HtpasswdManager/Test/HtpasswdServiceTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -140,6 +140,9 @@
 block discarded – undo
140 140
         $this->assertFalse($service->userExists('not Existant'), "User 'not Existant' should not exist");
141 141
     }
142 142
 
143
+    /**
144
+     * @param string $filename
145
+     */
143 146
     protected function getNumberOfLines($filename) {
144 147
         $cont  = file_get_contents($filename);
145 148
         $lines = explode("\n", $cont);
Please login to merge, or discard this patch.