Completed
Pull Request — master (#1616)
by
unknown
08:27
created
lib/controller/accountscontroller.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	 * @param string $appName
84 84
 	 * @param IRequest $request
85 85
 	 * @param AccountService $accountService
86
-	 * @param $UserId
86
+	 * @param string $UserId
87 87
 	 * @param $userFolder
88 88
 	 * @param AutoConfig $autoConfig
89 89
 	 * @param Logger $logger
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
 	 * @NoCSRFRequired
418 418
 	 * @param int $accountId
419 419
 	 * @param string $signature
420
-	 * @return Account[]
420
+	 * @return \OCA\Mail\Db\Alias
421 421
 	 */
422 422
 	public function updateSignature($accountId, $signature) {
423 423
 		return $this->accountService->updateSignature($accountId, $this->currentUserId, $signature);
Please login to merge, or discard this patch.
lib/service/accountservice.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 	}
71 71
 
72 72
 	/**
73
-	 * @param $currentUserId
73
+	 * @param string $currentUserId
74 74
 	 * @param $accountId
75 75
 	 * @return IAccount
76 76
 	 */
@@ -92,6 +92,7 @@  discard block
 block discarded – undo
92 92
 
93 93
 	/**
94 94
 	 * @param int $accountId
95
+	 * @param string $currentUserId
95 96
 	 */
96 97
 	public function delete($currentUserId, $accountId) {
97 98
 		if ((int)$accountId === UnifiedAccount::ID) {
Please login to merge, or discard this patch.