Completed
Pull Request — master (#551)
by Maxence
02:40
created
lib/Model/ShareWrapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -557,7 +557,7 @@
 block discarded – undo
557 557
 	 * @param IUserManager $userManager
558 558
 	 * @param IURLGenerator $urlGenerator
559 559
 	 *
560
-	 * @return IShare
560
+	 * @return null|Share
561 561
 	 * @throws IllegalIDChangeException
562 562
 	 */
563 563
 	public function getShare(
Please login to merge, or discard this patch.
lib/Service/GSUpstreamService.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -179,7 +179,6 @@  discard block
 block discarded – undo
179 179
 	/**
180 180
 	 * @param GSEvent $event
181 181
 	 * @param string $instance
182
-	 * @param string $protocol
183 182
 	 *
184 183
 	 * @throws RequestContentException
185 184
 	 * @throws RequestNetworkException
@@ -328,7 +327,7 @@  discard block
 block discarded – undo
328 327
 
329 328
 
330 329
 	/**
331
-	 * @param array $sync
330
+	 * @param DeprecatedCircle[] $sync
332 331
 	 */
333 332
 	public function synchronize(array $sync) {
334 333
 		if (!$this->configService->isGSAvailable()) {
Please login to merge, or discard this patch.
lib/Service/MemberService.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -211,7 +211,6 @@
 block discarded – undo
211 211
 
212 212
 	/**
213 213
 	 * @param string $circleId
214
-	 * @param IFederatedUser[] $members
215 214
 	 *
216 215
 	 * @return FederatedUser[]
217 216
 	 * @throws CircleNotFoundException
Please login to merge, or discard this patch.
lib/Service/MiscService.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,6 +66,9 @@  discard block
 block discarded – undo
66 66
 		$this->userManager = $userManager;
67 67
 	}
68 68
 
69
+	/**
70
+	 * @param string $message
71
+	 */
69 72
 	public function log($message, $level = 4) {
70 73
 		$data = array(
71 74
 			'app'   => $this->appName,
@@ -86,7 +89,7 @@  discard block
 block discarded – undo
86 89
 
87 90
 	/**
88 91
 	 * @param $arr
89
-	 * @param $k
92
+	 * @param string $k
90 93
 	 *
91 94
 	 * @param string $default
92 95
 	 *
@@ -257,7 +260,7 @@  discard block
 block discarded – undo
257 260
 
258 261
 
259 262
 	/**
260
-	 * @param $ident
263
+	 * @param string $ident
261 264
 	 *
262 265
 	 * @return mixed|string
263 266
 	 * @deprecated
Please login to merge, or discard this patch.
tests/unit/lib/Api/CirclesTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -861,7 +861,7 @@
 block discarded – undo
861 861
 	/**
862 862
 	 * function to generate admin/moderator/member and assigning them their level.
863 863
 	 *
864
-	 * @param $circleId
864
+	 * @param integer $circleId
865 865
 	 * @param bool $isClosed
866 866
 	 *
867 867
 	 * @throws QueryException
Please login to merge, or discard this patch.