Completed
Pull Request — master (#1523)
by
unknown
15:51
created
lib/service/aliasesservice.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 	}
39 39
 
40 40
 	/**
41
-	 * @param $e
41
+	 * @param Exception $e
42 42
 	 * @throws NotFoundException
43 43
 	 */
44 44
 	private function handleException ($e) {
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
 
53 53
 	/**
54 54
 	 * @param int $accountId
55
-	 * @param String $currentUser
56
-	 * @return String Alias
55
+	 * @param String $currentUserId
56
+	 * @return Alias Alias
57 57
 	 */
58 58
 	public function findAll($accountId, $currentUserId) {
59 59
 		return $this->mapper->findAll($accountId, $currentUserId);
@@ -61,8 +61,8 @@  discard block
 block discarded – undo
61 61
 
62 62
 	/**
63 63
 	 * @param int $aliasId
64
-	 * @param String $currentUser
65
-	 * @return String Alias
64
+	 * @param string $currentUserId
65
+	 * @return Alias[] Alias
66 66
 	 */
67 67
 	public function find($aliasId, $currentUserId) {
68 68
 		return $this->mapper->find($aliasId, $currentUserId);
Please login to merge, or discard this patch.