@@ -214,6 +214,11 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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) { |
@@ -73,7 +73,7 @@ |
||
| 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)) { |
@@ -364,7 +364,7 @@ |
||
| 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 |