Completed
Push — federated-circles ( 92a91f...545292 )
by Maxence
02:39
created
lib/Db/CirclesRequest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
 
96 96
 
97 97
 	/**
98
-	 * @param $circleId
98
+	 * @param integer $circleId
99 99
 	 * @param int $level
100 100
 	 *
101 101
 	 * @return Member[]
Please login to merge, or discard this patch.
lib/Db/CirclesRequestBuilder.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -53,6 +53,7 @@  discard block
 block discarded – undo
53 53
 	 * Join the Circles table
54 54
 	 *
55 55
 	 * @param IQueryBuilder $qb
56
+	 * @param string $field
56 57
 	 */
57 58
 	protected function joinCircles(& $qb, $field) {
58 59
 		$expr = $qb->expr();
@@ -108,6 +109,9 @@  discard block
 block discarded – undo
108 109
 
109 110
 
110 111
 
112
+	/**
113
+	 * @param integer $level
114
+	 */
111 115
 	protected function limitToMemberLevel(IQueryBuilder &$qb, $level) {
112 116
 		$qb->where(
113 117
 			$qb->expr()
Please login to merge, or discard this patch.
lib/Service/FederatedService.php 1 patch
Doc Comments   +8 added lines, -5 removed lines patch added patch discarded remove patch
@@ -163,8 +163,8 @@  discard block
 block discarded – undo
163 163
 	 * in the database and send a request to the remote circle using requestLink()
164 164
 	 * If any issue, entry is removed from the database.
165 165
 	 *
166
-	 * @param $circleId
167
-	 * @param $remote
166
+	 * @param integer $circleId
167
+	 * @param string $remote
168 168
 	 *
169 169
 	 * @return FederatedLink
170 170
 	 * @throws Exception
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 	 * @param Circle $circle
235 235
 	 * @param FederatedLink $link
236 236
 	 *
237
-	 * @return int
237
+	 * @return boolean
238 238
 	 * @throws Exception
239 239
 	 */
240 240
 	private function requestLink(Circle $circle, FederatedLink &$link) {
@@ -328,8 +328,8 @@  discard block
 block discarded – undo
328 328
 
329 329
 
330 330
 	/**
331
-	 * @param $circleId
332
-	 * @param $uniqueId
331
+	 * @param integer $circleId
332
+	 * @param string $uniqueId
333 333
 	 *
334 334
 	 * @return FederatedLink
335 335
 	 */
@@ -338,6 +338,9 @@  discard block
 block discarded – undo
338 338
 	}
339 339
 
340 340
 
341
+	/**
342
+	 * @param string $token
343
+	 */
341 344
 	public function initiateRemoteShare($token) {
342 345
 		$args = [
343 346
 			'token' => $token,
Please login to merge, or discard this patch.