@@ -856,7 +856,7 @@ |
||
856 | 856 | * Marks an item as failed and causes the indexer to skip the item in the |
857 | 857 | * next run. |
858 | 858 | * |
859 | - * @param int|Item $item Either the item's Index Queue |
|
859 | + * @param Item $item Either the item's Index Queue |
|
860 | 860 | * uid or the complete item |
861 | 861 | * @param string $errorMessage Error message |
862 | 862 | */ |
@@ -438,7 +438,7 @@ |
||
438 | 438 | * This method executes the requested commands and applies the changes to |
439 | 439 | * the template. |
440 | 440 | * |
441 | - * @param $actionResult |
|
441 | + * @param string $actionResult |
|
442 | 442 | * @return string Rendered plugin content |
443 | 443 | */ |
444 | 444 | abstract protected function render($actionResult); |
@@ -80,7 +80,7 @@ |
||
80 | 80 | /** |
81 | 81 | * Constructs label markers. |
82 | 82 | * |
83 | - * @return array Array of label markers. |
|
83 | + * @return string Array of label markers. |
|
84 | 84 | */ |
85 | 85 | protected function getLabelMarkers() |
86 | 86 | { |
@@ -134,7 +134,7 @@ |
||
134 | 134 | /** |
135 | 135 | * Gets the last searched keywords from the database |
136 | 136 | * |
137 | - * @param int|bool $limit |
|
137 | + * @param integer $limit |
|
138 | 138 | * @return array An array containing the last searches of the current user |
139 | 139 | */ |
140 | 140 | protected function getLastSearchesFromDatabase($limit = false) |
@@ -1152,7 +1152,7 @@ |
||
1152 | 1152 | } |
1153 | 1153 | |
1154 | 1154 | /** |
1155 | - * @param $templateContent |
|
1155 | + * @param string $templateContent |
|
1156 | 1156 | * @return mixed |
1157 | 1157 | */ |
1158 | 1158 | public function setTemplateContent($templateContent) |
@@ -324,7 +324,7 @@ |
||
324 | 324 | * Sets a request's parameter and its value. |
325 | 325 | * |
326 | 326 | * @param string $parameter Parameter name |
327 | - * @param mixed $value Parameter value. |
|
327 | + * @param string $value Parameter value. |
|
328 | 328 | */ |
329 | 329 | public function setParameter($parameter, $value) |
330 | 330 | { |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | * |
233 | 233 | * Also does not report the time, see https://forge.typo3.org/issues/64551 |
234 | 234 | * |
235 | - * @param float|int $timeout maximum time to wait for ping in seconds, -1 for unlimited (default is 2) |
|
235 | + * @param integer $timeout maximum time to wait for ping in seconds, -1 for unlimited (default is 2) |
|
236 | 236 | * @param boolean $useCache indicates if the ping result should be cached in the instance or not |
237 | 237 | * @return bool TRUE if Solr can be reached, FALSE if not |
238 | 238 | */ |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | /** |
246 | 246 | * Call the /admin/ping servlet, can be used to get the runtime of a ping request. |
247 | 247 | * |
248 | - * @param float|int $timeout maximum time to wait for ping in seconds, -1 for unlimited (default is 2) |
|
248 | + * @param integer $timeout maximum time to wait for ping in seconds, -1 for unlimited (default is 2) |
|
249 | 249 | * @param boolean $useCache indicates if the ping result should be cached in the instance or not |
250 | 250 | * @return double runtime in milliseconds |
251 | 251 | * @throws \ApacheSolrForTypo3\Solr\PingFailedException |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | * |
483 | 483 | * @param string $url |
484 | 484 | * @param float|bool $timeout Read timeout in seconds |
485 | - * @return \Apache_Solr_Response |
|
485 | + * @return string |
|
486 | 486 | */ |
487 | 487 | protected function _sendRawGet($url, $timeout = false) |
488 | 488 | { |
@@ -656,7 +656,7 @@ discard block |
||
656 | 656 | * a complete and well formed "delete" xml document |
657 | 657 | * |
658 | 658 | * @param string $rawPost Expected to be utf-8 encoded xml document |
659 | - * @param float|int $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception) |
|
659 | + * @param integer $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception) |
|
660 | 660 | * @return \Apache_Solr_Response |
661 | 661 | */ |
662 | 662 | public function delete($rawPost, $timeout = 3600) |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | * |
195 | 195 | * @param string $msg |
196 | 196 | * @param int $severity |
197 | - * @param mixed $dataVar |
|
197 | + * @param string[] $dataVar |
|
198 | 198 | */ |
199 | 199 | protected function writeDevLog($msg, $severity = 0, $dataVar = false) |
200 | 200 | { |
@@ -1024,7 +1024,7 @@ discard block |
||
1024 | 1024 | /** |
1025 | 1025 | * Sets the fields to return by a query. |
1026 | 1026 | * |
1027 | - * @param array|string $fieldList an array or comma-separated list of field names |
|
1027 | + * @param string $fieldList an array or comma-separated list of field names |
|
1028 | 1028 | * @throws \UnexpectedValueException on parameters other than comma-separated lists and arrays |
1029 | 1029 | */ |
1030 | 1030 | public function setFieldList($fieldList = ['*', 'score']) |
@@ -1100,7 +1100,7 @@ discard block |
||
1100 | 1100 | * |
1101 | 1101 | * This query supports the complete Lucene Query Language. |
1102 | 1102 | * |
1103 | - * @param mixed $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter. |
|
1103 | + * @param string $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter. |
|
1104 | 1104 | * @see http://wiki.apache.org/solr/DisMaxQParserPlugin#q.alt |
1105 | 1105 | */ |
1106 | 1106 | public function setAlternativeQuery($alternativeQuery) |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | * @param int $pageId Id of the (root) page to get the Solr configuration from. |
244 | 244 | * @param string $path The TypoScript configuration path to retrieve. |
245 | 245 | * @param bool $initializeTsfe Optionally initializes a full TSFE to get the configuration, defaults to FALSE |
246 | - * @param int|bool $language System language uid or FALSE to disable language usage, optional, defaults to 0 |
|
246 | + * @param integer $language System language uid or FALSE to disable language usage, optional, defaults to 0 |
|
247 | 247 | * @param bool $useTwoLevelCache Flag to enable the two level cache for the typoscript configuration array |
248 | 248 | * @return TypoScriptConfiguration The Solr configuration for the requested tree. |
249 | 249 | */ |
@@ -343,9 +343,9 @@ discard block |
||
343 | 343 | |
344 | 344 | /** |
345 | 345 | * This function is used to retrieve the configuration from an existing TSFE instance |
346 | - * @param $pageId |
|
347 | - * @param $path |
|
348 | - * @param $language |
|
346 | + * @param integer $pageId |
|
347 | + * @param string $path |
|
348 | + * @param integer $language |
|
349 | 349 | * @return mixed |
350 | 350 | */ |
351 | 351 | private static function getConfigurationFromExistingTSFE($pageId, $path, $language) |