Completed
Push — master ( 03449d...db6361 )
by Lukas
44s queued 24s
created
apps/dav/lib/CardDAV/ImageExportPlugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 	 *
60 60
 	 * @param RequestInterface $request
61 61
 	 * @param ResponseInterface $response
62
-	 * @return bool|void
62
+	 * @return boolean
63 63
 	 */
64 64
 	function httpGet(RequestInterface $request, ResponseInterface $response) {
65 65
 
Please login to merge, or discard this patch.
lib/private/User/Session.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
 	 *
276 276
 	 * @param string $uid
277 277
 	 * @param string $password
278
-	 * @return boolean|null
278
+	 * @return boolean
279 279
 	 * @throws LoginException
280 280
 	 */
281 281
 	public function login($uid, $password) {
@@ -375,6 +375,9 @@  discard block
 block discarded – undo
375 375
 		return $this->config->getSystemValue('token_auth_enforced', false);
376 376
 	}
377 377
 
378
+	/**
379
+	 * @param string $username
380
+	 */
378 381
 	protected function isTwoFactorEnforced($username) {
379 382
 		Util::emitHook(
380 383
 			'\OCA\Files_Sharing\API\Server2Server',
@@ -449,6 +452,9 @@  discard block
 block discarded – undo
449 452
 		return false;
450 453
 	}
451 454
 
455
+	/**
456
+	 * @param string $token
457
+	 */
452 458
 	private function loginWithToken($token) {
453 459
 		try {
454 460
 			$dbToken = $this->tokenProvider->getToken($token);
Please login to merge, or discard this patch.