Completed
Pull Request — master (#246)
by Joas
12:22
created
lib/Service/SharingFrameService.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 	 *
151 151
 	 * @param SharingFrame $frame
152 152
 	 * @param Circle $circle
153
-	 * @param $broadcast
153
+	 * @param string|null $broadcast
154 154
 	 */
155 155
 	private function generateHeaders(SharingFrame $frame, Circle $circle, $broadcast) {
156 156
 
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 	 * Please use getFrameFromCircle();
190 190
 	 *
191 191
 	 * @param string $circleUniqueId
192
-	 * @param $viewerId
192
+	 * @param string $viewerId
193 193
 	 *
194 194
 	 * @return SharingFrame[]
195 195
 	 */
Please login to merge, or discard this patch.
lib/ShareByCircleProvider.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -438,8 +438,8 @@
 block discarded – undo
438 438
 
439 439
 	/**
440 440
 	 * @param string $userId
441
-	 * @param $shareType
442
-	 * @param Node $node
441
+	 * @param integer $shareType
442
+	 * @param Node|null $node
443 443
 	 * @param int $limit
444 444
 	 * @param int $offset
445 445
 	 *
Please login to merge, or discard this patch.
lib/Db/CircleProviderRequest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,10 +34,10 @@
 block discarded – undo
34 34
 
35 35
 
36 36
 	/**
37
-	 * @param $userId
37
+	 * @param string $userId
38 38
 	 * @param $circleUniqueIds
39
-	 * @param $limit
40
-	 * @param $offset
39
+	 * @param integer $limit
40
+	 * @param integer $offset
41 41
 	 *
42 42
 	 * @return array
43 43
 	 */
Please login to merge, or discard this patch.
lib/Service/MembersService.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 	 * @param $ident
110 110
 	 * @param int $type
111 111
 	 *
112
-	 * @return array
112
+	 * @return Member[]
113 113
 	 * @throws \Exception
114 114
 	 */
115 115
 	public function addMember($circleUniqueId, $ident, $type) {
@@ -258,8 +258,8 @@  discard block
 block discarded – undo
258 258
 	/**
259 259
 	 * Verify if a local account is valid.
260 260
 	 *
261
-	 * @param $ident
262
-	 * @param $type
261
+	 * @param string $ident
262
+	 * @param integer $type
263 263
 	 *
264 264
 	 * @throws NoUserException
265 265
 	 */
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 	 * Verify if a mail have a valid format.
281 281
 	 *
282 282
 	 * @param $ident
283
-	 * @param $type
283
+	 * @param integer $type
284 284
 	 *
285 285
 	 * @throws EmailAccountInvalidFormatException
286 286
 	 */
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
 	 * Verify if a contact exist in current user address books.
302 302
 	 *
303 303
 	 * @param $ident
304
-	 * @param $type
304
+	 * @param integer $type
305 305
 	 *
306 306
 	 * @throws NoUserException
307 307
 	 */
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
 	 * @param int $type
386 386
 	 * @param int $level
387 387
 	 *
388
-	 * @return array
388
+	 * @return Member[]
389 389
 	 * @throws \Exception
390 390
 	 */
391 391
 	public function levelMember($circleUniqueId, $name, $type, $level) {
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
 	/**
417 417
 	 * @param Circle $circle
418 418
 	 * @param Member $member
419
-	 * @param $level
419
+	 * @param integer $level
420 420
 	 *
421 421
 	 * @throws Exception
422 422
 	 */
@@ -489,9 +489,9 @@  discard block
 block discarded – undo
489 489
 	/**
490 490
 	 * @param string $circleUniqueId
491 491
 	 * @param string $name
492
-	 * @param $type
492
+	 * @param integer $type
493 493
 	 *
494
-	 * @return array
494
+	 * @return Member[]
495 495
 	 * @throws \Exception
496 496
 	 */
497 497
 	public function removeMember($circleUniqueId, $name, $type) {
Please login to merge, or discard this patch.