Completed
Push — master ( 6ab97c...6a4e84 )
by Maxence
02:33
created
lib/Service/MembersService.php 1 patch
Doc Comments   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
 	 *
107 107
 	 * @param string $circleUniqueId
108 108
 	 * @param $ident
109
-	 * @param $type
109
+	 * @param integer $type
110 110
 	 *
111
-	 * @return array
111
+	 * @return Member[]
112 112
 	 * @throws \Exception
113 113
 	 */
114 114
 	public function addMember($circleUniqueId, $ident, $type) {
@@ -253,8 +253,8 @@  discard block
 block discarded – undo
253 253
 	/**
254 254
 	 * Verify if a local account is valid.
255 255
 	 *
256
-	 * @param $ident
257
-	 * @param $type
256
+	 * @param string $ident
257
+	 * @param integer $type
258 258
 	 *
259 259
 	 * @throws NoUserException
260 260
 	 */
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
 	 * Verify if a mail have a valid format.
276 276
 	 *
277 277
 	 * @param $ident
278
-	 * @param $type
278
+	 * @param integer $type
279 279
 	 *
280 280
 	 * @throws EmailAccountInvalidFormatException
281 281
 	 */
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
 	 * Verify if a contact exist in current user address books.
297 297
 	 *
298 298
 	 * @param $ident
299
-	 * @param $type
299
+	 * @param integer $type
300 300
 	 *
301 301
 	 * @throws NoUserException
302 302
 	 */
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
 	 * @param int $type
390 390
 	 * @param int $level
391 391
 	 *
392
-	 * @return array
392
+	 * @return Member[]
393 393
 	 * @throws \Exception
394 394
 	 */
395 395
 	public function levelMember($circleUniqueId, $name, $type, $level) {
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
 	/**
429 429
 	 * @param Circle $circle
430 430
 	 * @param Member $member
431
-	 * @param $level
431
+	 * @param integer $level
432 432
 	 *
433 433
 	 * @throws \Exception
434 434
 	 */
@@ -479,9 +479,9 @@  discard block
 block discarded – undo
479 479
 	/**
480 480
 	 * @param string $circleUniqueId
481 481
 	 * @param string $name
482
-	 * @param $type
482
+	 * @param integer $type
483 483
 	 *
484
-	 * @return array
484
+	 * @return Member[]
485 485
 	 * @throws \Exception
486 486
 	 */
487 487
 	public function removeMember($circleUniqueId, $name, $type) {
Please login to merge, or discard this patch.