Completed
Push — federated-circles ( 450355...2a3998 )
by Maxence
04:51 queued 02:17
created
lib/Db/CirclesRequestBuilder.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,6 +54,7 @@  discard block
 block discarded – undo
54 54
 	 * Join the Circles table
55 55
 	 *
56 56
 	 * @param IQueryBuilder $qb
57
+	 * @param string $field
57 58
 	 */
58 59
 	protected function joinCircles(& $qb, $field) {
59 60
 		$expr = $qb->expr();
@@ -109,7 +110,7 @@  discard block
 block discarded – undo
109 110
 	 * Limit the request to a minimum member level.
110 111
 	 *
111 112
 	 * @param IQueryBuilder $qb
112
-	 * @param $level
113
+	 * @param integer $level
113 114
 	 */
114 115
 	protected function limitToMemberLevel(IQueryBuilder &$qb, $level) {
115 116
 		$qb->where(
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 $uniqueId
343
+	 */
341 344
 	public function initiateRemoteShare($uniqueId) {
342 345
 		$args = [
343 346
 			'uniqueId' => $uniqueId,
Please login to merge, or discard this patch.