Completed
Push — master ( f0b8b1...988dc2 )
by Maxence
02:48 queued 57s
created
lib/Model/Runner.php 1 patch
Doc Comments   +9 added lines, -4 removed lines patch added patch discarded remove patch
@@ -214,6 +214,11 @@  discard block
 block discarded – undo
214 214
 		$this->infoUpdated();
215 215
 	}
216 216
 
217
+	/**
218
+	 * @param string $info
219
+	 * @param string $value
220
+	 * @param string $colored
221
+	 */
217 222
 	private function setInfoColored($info, $value, $colored) {
218 223
 		if ($colored === '') {
219 224
 			return;
@@ -257,7 +262,7 @@  discard block
 block discarded – undo
257 262
 	}
258 263
 
259 264
 	/**
260
-	 * @param $key
265
+	 * @param string $key
261 266
 	 */
262 267
 	public function keyPressed($key) {
263 268
 		foreach ($this->methodOnKeyPress as $method) {
@@ -339,7 +344,7 @@  discard block
 block discarded – undo
339 344
 
340 345
 
341 346
 	/**
342
-	 * @param $tick
347
+	 * @param integer $tick
343 348
 	 */
344 349
 	private function updateTick($tick) {
345 350
 		if (($this->ramTick + self::INFO_UPDATE) > $tick) {
@@ -353,8 +358,8 @@  discard block
 block discarded – undo
353 358
 
354 359
 	/**
355 360
 	 * @deprecated - verifier l'interet !?
356
-	 * @param $reason
357
-	 * @param $stop
361
+	 * @param string $reason
362
+	 * @param boolean $stop
358 363
 	 */
359 364
 	public function exception($reason, $stop) {
360 365
 		if (!$stop) {
Please login to merge, or discard this patch.
lib/Service/CliService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
 
74 74
 	/**
75 75
 	 * @param string $panelId
76
-	 * @param array $lines
76
+	 * @param string[] $lines
77 77
 	 */
78 78
 	public function createPanel($panelId, $lines) {
79 79
 		if (!is_array($lines)) {
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
@@ -364,7 +364,7 @@
 block discarded – undo
364 364
 	 * @param IndexDocument $document
365 365
 	 *
366 366
 	 * @return
367
-	 * @throws Exception
367
+	 Index @throws Exception
368 368
 	 */
369 369
 	public function indexDocument(
370 370
 		IFullTextSearchPlatform $platform, IFullTextSearchProvider $provider, $document
Please login to merge, or discard this patch.