@@ -165,10 +165,10 @@ |
||
165 | 165 | // direct access for small paths |
166 | 166 | case 1: |
167 | 167 | $this->data[$pathArray[0]] = $value; |
168 | - return; |
|
168 | + return; |
|
169 | 169 | case 2: |
170 | 170 | $this->data[$pathArray[0]][$pathArray[1]] = $value; |
171 | - return; |
|
171 | + return; |
|
172 | 172 | default: |
173 | 173 | $this->setDeepElementWithLoop($pathArray, $value); |
174 | 174 | } |
@@ -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 | { |
@@ -380,16 +380,16 @@ |
||
380 | 380 | protected function getUrl($url, $headers, $timeout) |
381 | 381 | { |
382 | 382 | $context = stream_context_create( |
383 | - [ |
|
383 | + [ |
|
384 | 384 | 'http' => [ |
385 | 385 | 'header' => implode(CRLF, $headers), |
386 | 386 | 'timeout' => $timeout |
387 | 387 | ], |
388 | 388 | 'ssl' => [ |
389 | - 'verify_peer' => false, |
|
390 | - 'allow_self_signed'=> true |
|
389 | + 'verify_peer' => false, |
|
390 | + 'allow_self_signed'=> true |
|
391 | + ] |
|
391 | 392 | ] |
392 | - ] |
|
393 | 393 | ); |
394 | 394 | $rawResponse = file_get_contents($url, false, $context); |
395 | 395 | return $rawResponse; |
@@ -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) |