Completed
Pull Request — master (#384)
by Tortue
02:27
created
lib/Db/MembersRequest.php 1 patch
Doc Comments   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
 	 * returns the index of a specific UserID in a Members List
301 301
 	 *
302 302
 	 * @param array $members
303
-	 * @param $userId
303
+	 * @param string $userId
304 304
 	 *
305 305
 	 * @return int
306 306
 	 */
@@ -631,12 +631,19 @@  discard block
 block discarded – undo
631 631
 	}
632 632
 
633 633
 
634
+	/**
635
+	 * @param string $groupId
636
+	 */
634 637
 	public function unlinkAllFromGroup($groupId) {
635 638
 		$qb = $this->getGroupsDeleteSql($groupId);
636 639
 		$qb->execute();
637 640
 	}
638 641
 
639 642
 
643
+	/**
644
+	 * @param string $circleId
645
+	 * @param string $groupId
646
+	 */
640 647
 	public function unlinkFromGroup($circleId, $groupId) {
641 648
 		$qb = $this->getGroupsDeleteSql($groupId);
642 649
 		$this->limitToCircleId($qb, $circleId);
@@ -674,8 +681,6 @@  discard block
 block discarded – undo
674 681
 	/**
675 682
 	 * @param string $circleId
676 683
 	 * @param string $contactId
677
-	 * @param string $userId
678
-	 * @param int $type
679 684
 	 *
680 685
 	 * @return Member
681 686
 	 * @throws MemberDoesNotExistException
Please login to merge, or discard this patch.