Completed
Pull Request — master (#354)
by Maxence
04:57
created
lib/Service/ProviderService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -214,6 +214,9 @@
 block discarded – undo
214 214
 	}
215 215
 
216 216
 
217
+	/**
218
+	 * @param boolean $boolean
219
+	 */
217 220
 	public function setProviderAsIndexed(IFullTextSearchProvider $provider, $boolean) {
218 221
 		$this->configService->setProviderOptions(
219 222
 			$provider->getId(), ConfigService::PROVIDER_INDEXED, (($boolean) ? '1' : '0')
Please login to merge, or discard this patch.
lib/Service/IndexService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
 
93 93
 
94 94
 	/**
95
-	 * @param $action
95
+	 * @param string $action
96 96
 	 *
97 97
 	 * @throws InterruptException
98 98
 	 * @throws TickDoesNotExistException
Please login to merge, or discard this patch.
lib/Model/Index.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
 	/**
130 130
 	 * @param int $status
131 131
 	 *
132
-	 * @return bool
132
+	 * @return integer
133 133
 	 */
134 134
 	public function isStatus($status) {
135 135
 		return ((int)$status & $this->getStatus());
Please login to merge, or discard this patch.
lib/Model/SearchRequest.php 1 patch
Doc Comments   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -218,8 +218,8 @@  discard block
 block discarded – undo
218 218
 	}
219 219
 
220 220
 	/**
221
-	 * @param $key
222
-	 * @param $value
221
+	 * @param string $key
222
+	 * @param string $value
223 223
 	 *
224 224
 	 * @return $this
225 225
 	 */
@@ -315,7 +315,6 @@  discard block
 block discarded – undo
315 315
 
316 316
 
317 317
 	/**
318
-	 * @param array $query
319 318
 	 *
320 319
 	 * @return $this
321 320
 	 */
@@ -334,7 +333,6 @@  discard block
 block discarded – undo
334 333
 
335 334
 
336 335
 	/**
337
-	 * @param array $query
338 336
 	 *
339 337
 	 * @return $this
340 338
 	 */
Please login to merge, or discard this patch.
lib/Command/Test.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -210,7 +210,7 @@
 block discarded – undo
210 210
 
211 211
 	/**
212 212
 	 * @param string|bool $line
213
-	 * @param $isNewLine
213
+	 * @param boolean $isNewLine
214 214
 	 *
215 215
 	 * @return string
216 216
 	 */
Please login to merge, or discard this patch.