Completed
Pull Request — master (#135)
by Blizzz
01:59
created
lib/Service/MiscService.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
 	/**
66 66
 	 * @param $arr
67
-	 * @param $k
67
+	 * @param string $k
68 68
 	 *
69 69
 	 * @param string $default
70 70
 	 *
@@ -79,6 +79,9 @@  discard block
 block discarded – undo
79 79
 	}
80 80
 
81 81
 
82
+	/**
83
+	 * @param string[] $arr
84
+	 */
82 85
 	public static function mustContains($data, $arr) {
83 86
 		if (!is_array($arr)) {
84 87
 			$arr = [$arr];
@@ -188,7 +191,7 @@  discard block
 block discarded – undo
188 191
 
189 192
 
190 193
 	/**
191
-	 * @param $ident
194
+	 * @param string $ident
192 195
 	 *
193 196
 	 * @return mixed|string
194 197
 	 */
Please login to merge, or discard this patch.
lib/Controller/TestController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
 
129 129
 
130 130
 	/**
131
-	 * @return DataResponse
131
+	 * @return string
132 132
 	 */
133 133
 	public function testAsyncStatus() {
134 134
 		return $this->miscService->success(
Please login to merge, or discard this patch.
lib/Circles/FileSharingBroadcaster.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 
179 179
 
180 180
 	/**
181
-	 * @param $circleName
181
+	 * @param string $circleName
182 182
 	 * @param IShare $share
183 183
 	 * @param string $email
184 184
 	 */
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 	 * @param $subject
234 234
 	 * @param $text
235 235
 	 * @param $fileName
236
-	 * @param $link
236
+	 * @param string $link
237 237
 	 * @param string $author
238 238
 	 * @param string $circleName
239 239
 	 *
Please login to merge, or discard this patch.
lib/Service/CirclesService.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -403,6 +403,7 @@
 block discarded – undo
403 403
 	 * switchOlderAdminToOwner();
404 404
 	 *
405 405
 	 * @param Member[] $members
406
+	 * @param Circle $circle
406 407
 	 */
407 408
 	private function switchOlderAdminToOwner($circle, $members) {
408 409
 
Please login to merge, or discard this patch.