@@ -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 | { |
@@ -544,7 +544,7 @@ discard block |
||
544 | 544 | * |
545 | 545 | * @param string $configurationName |
546 | 546 | * @param string $defaultIfEmpty |
547 | - * @return mixed |
|
547 | + * @return string |
|
548 | 548 | */ |
549 | 549 | public function getIndexQueueInitializerClassByConfigurationName($configurationName, $defaultIfEmpty = 'ApacheSolrForTypo3\\Solr\\IndexQueue\\Initializer\\Record') |
550 | 550 | { |
@@ -1237,7 +1237,7 @@ discard block |
||
1237 | 1237 | * plugin.tx_solr.search.query.allowEmptyQuery |
1238 | 1238 | * |
1239 | 1239 | * @param string $defaultIfEmpty |
1240 | - * @return string |
|
1240 | + * @return boolean |
|
1241 | 1241 | */ |
1242 | 1242 | public function getSearchQueryAllowEmptyQuery($defaultIfEmpty = '') |
1243 | 1243 | { |
@@ -1299,7 +1299,7 @@ discard block |
||
1299 | 1299 | * |
1300 | 1300 | * plugin.tx_solr.search.query.returnFields |
1301 | 1301 | * |
1302 | - * @param array $defaultIfEmpty |
|
1302 | + * @param string[] $defaultIfEmpty |
|
1303 | 1303 | * @return array |
1304 | 1304 | */ |
1305 | 1305 | public function getSearchQueryReturnFieldsAsArray($defaultIfEmpty = array()) |
@@ -441,7 +441,7 @@ |
||
441 | 441 | * should be indexed for the current page. |
442 | 442 | * |
443 | 443 | * @param \Apache_Solr_Document $pageDocument The main document representing this page. |
444 | - * @param array $existingDocuments An array of documents already created for this page. |
|
444 | + * @param \Apache_Solr_Document[] $existingDocuments An array of documents already created for this page. |
|
445 | 445 | * @return array An array of additional \Apache_Solr_Document objects to index |
446 | 446 | */ |
447 | 447 | protected function getAdditionalDocuments( |
@@ -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) |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | * @param int $pageId Id of the (root) page to get the Solr configuration from. |
237 | 237 | * @param string $path The TypoScript configuration path to retrieve. |
238 | 238 | * @param bool $initializeTsfe Optionally initializes a full TSFE to get the configuration, defaults to FALSE |
239 | - * @param int|bool $language System language uid or FALSE to disable language usage, optional, defaults to 0 |
|
239 | + * @param integer $language System language uid or FALSE to disable language usage, optional, defaults to 0 |
|
240 | 240 | * @return TypoScriptConfiguration The Solr configuration for the requested tree. |
241 | 241 | */ |
242 | 242 | public static function getConfigurationFromPageId( |
@@ -311,9 +311,9 @@ discard block |
||
311 | 311 | |
312 | 312 | /** |
313 | 313 | * This function is used to retrieve the configuration from an existing TSFE instance |
314 | - * @param $pageId |
|
315 | - * @param $path |
|
316 | - * @param $language |
|
314 | + * @param integer $pageId |
|
315 | + * @param string $path |
|
316 | + * @param integer $language |
|
317 | 317 | * @return mixed |
318 | 318 | */ |
319 | 319 | private static function getConfigurationFromExistingTSFE($pageId, $path, $language) |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | * |
194 | 194 | * @param string $msg |
195 | 195 | * @param int $severity |
196 | - * @param mixed $dataVar |
|
196 | + * @param string[] $dataVar |
|
197 | 197 | */ |
198 | 198 | protected function writeDevLog($msg, $severity = 0, $dataVar = false) |
199 | 199 | { |
@@ -1003,7 +1003,7 @@ discard block |
||
1003 | 1003 | /** |
1004 | 1004 | * Sets the fields to return by a query. |
1005 | 1005 | * |
1006 | - * @param array|string $fieldList an array or comma-separated list of field names |
|
1006 | + * @param string $fieldList an array or comma-separated list of field names |
|
1007 | 1007 | * @throws \UnexpectedValueException on parameters other than comma-separated lists and arrays |
1008 | 1008 | */ |
1009 | 1009 | public function setFieldList($fieldList = array('*', 'score')) |
@@ -1079,7 +1079,7 @@ discard block |
||
1079 | 1079 | * |
1080 | 1080 | * This query supports the complete Lucene Query Language. |
1081 | 1081 | * |
1082 | - * @param mixed $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter. |
|
1082 | + * @param string $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter. |
|
1083 | 1083 | * @see http://wiki.apache.org/solr/DisMaxQParserPlugin#q.alt |
1084 | 1084 | */ |
1085 | 1085 | public function setAlternativeQuery($alternativeQuery) |
@@ -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) |