@@ -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 | { |
@@ -1041,7 +1041,7 @@ discard block |
||
| 1041 | 1041 | /** |
| 1042 | 1042 | * Sets the fields to return by a query. |
| 1043 | 1043 | * |
| 1044 | - * @param array|string $fieldList an array or comma-separated list of field names |
|
| 1044 | + * @param string $fieldList an array or comma-separated list of field names |
|
| 1045 | 1045 | * @throws \UnexpectedValueException on parameters other than comma-separated lists and arrays |
| 1046 | 1046 | */ |
| 1047 | 1047 | public function setFieldList($fieldList = ['*', 'score']) |
@@ -1117,7 +1117,7 @@ discard block |
||
| 1117 | 1117 | * |
| 1118 | 1118 | * This query supports the complete Lucene Query Language. |
| 1119 | 1119 | * |
| 1120 | - * @param mixed $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter. |
|
| 1120 | + * @param string $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter. |
|
| 1121 | 1121 | * @see http://wiki.apache.org/solr/DisMaxQParserPlugin#q.alt |
| 1122 | 1122 | */ |
| 1123 | 1123 | public function setAlternativeQuery($alternativeQuery) |
@@ -385,7 +385,7 @@ discard block |
||
| 385 | 385 | * different value for non-database-record types. |
| 386 | 386 | * @param string $additionalRecordFields for sql-query |
| 387 | 387 | * |
| 388 | - * @return array|NULL |
|
| 388 | + * @return string |
|
| 389 | 389 | */ |
| 390 | 390 | protected function getRecordCached($itemType, $itemUid, $additionalRecordFields) |
| 391 | 391 | { |
@@ -937,7 +937,7 @@ discard block |
||
| 937 | 937 | * Marks an item as failed and causes the indexer to skip the item in the |
| 938 | 938 | * next run. |
| 939 | 939 | * |
| 940 | - * @param int|Item $item Either the item's Index Queue uid or the complete item |
|
| 940 | + * @param Item $item Either the item's Index Queue uid or the complete item |
|
| 941 | 941 | * @param string $errorMessage Error message |
| 942 | 942 | */ |
| 943 | 943 | public function markItemAsFailed($item, $errorMessage = '') |
@@ -516,7 +516,7 @@ discard block |
||
| 516 | 516 | * |
| 517 | 517 | * @param string $url |
| 518 | 518 | * @param float|bool $timeout Read timeout in seconds |
| 519 | - * @return \Apache_Solr_Response |
|
| 519 | + * @return string |
|
| 520 | 520 | */ |
| 521 | 521 | protected function _sendRawGet($url, $timeout = false) |
| 522 | 522 | { |
@@ -691,7 +691,7 @@ discard block |
||
| 691 | 691 | * a complete and well formed "delete" xml document |
| 692 | 692 | * |
| 693 | 693 | * @param string $rawPost Expected to be utf-8 encoded xml document |
| 694 | - * @param float|int $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception) |
|
| 694 | + * @param integer $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception) |
|
| 695 | 695 | * @return \Apache_Solr_Response |
| 696 | 696 | */ |
| 697 | 697 | public function delete($rawPost, $timeout = 3600) |
@@ -27,7 +27,6 @@ |
||
| 27 | 27 | use Apache_Solr_Document; |
| 28 | 28 | use ApacheSolrForTypo3\Solr\Access\Rootline; |
| 29 | 29 | use ApacheSolrForTypo3\Solr\Domain\Search\ApacheSolrDocument\Builder; |
| 30 | -use ApacheSolrForTypo3\Solr\Domain\Variants\IdBuilder; |
|
| 31 | 30 | use ApacheSolrForTypo3\Solr\FieldProcessor\Service; |
| 32 | 31 | use ApacheSolrForTypo3\Solr\IndexQueue\FrontendHelper\PageFieldMappingIndexer; |
| 33 | 32 | use ApacheSolrForTypo3\Solr\IndexQueue\Item; |