@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
55 | - * @param $filterFieldName |
|
55 | + * @param string $filterFieldName |
|
56 | 56 | */ |
57 | 57 | public function removeByPrefix($filterFieldName) |
58 | 58 | { |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | |
77 | 77 | /** |
78 | - * @param $filterString |
|
78 | + * @param string $filterString |
|
79 | 79 | * @param string $name |
80 | 80 | */ |
81 | 81 | public function add($filterString, $name = '') |
@@ -547,7 +547,7 @@ discard block |
||
547 | 547 | /** |
548 | 548 | * Activates and deactivates grouping for the current query. |
549 | 549 | * |
550 | - * @param bool|Grouping $grouping TRUE to enable grouping, FALSE to disable grouping |
|
550 | + * @param Grouping $grouping TRUE to enable grouping, FALSE to disable grouping |
|
551 | 551 | * @return void |
552 | 552 | */ |
553 | 553 | public function setGrouping($grouping = true) |
@@ -735,7 +735,7 @@ discard block |
||
735 | 735 | /** |
736 | 736 | * Activates and deactivates faceting for the current query. |
737 | 737 | * |
738 | - * @param bool|Faceting $faceting TRUE to enable faceting, FALSE to disable faceting |
|
738 | + * @param Faceting $faceting TRUE to enable faceting, FALSE to disable faceting |
|
739 | 739 | * @return void |
740 | 740 | */ |
741 | 741 | public function setFaceting($faceting = true) |
@@ -948,7 +948,7 @@ discard block |
||
948 | 948 | * Sets the fields to return by a query. |
949 | 949 | * |
950 | 950 | * @deprecated Use method setReturnFields() instead, will be removed in 8.0 |
951 | - * @param array|string $fieldList an array or comma-separated list of field names |
|
951 | + * @param string $fieldList an array or comma-separated list of field names |
|
952 | 952 | * @throws \UnexpectedValueException on parameters other than comma-separated lists and arrays |
953 | 953 | */ |
954 | 954 | public function setFieldList($fieldList = ['*', 'score']) |
@@ -1042,7 +1042,7 @@ discard block |
||
1042 | 1042 | * |
1043 | 1043 | * This query supports the complete Lucene Query Language. |
1044 | 1044 | * |
1045 | - * @param mixed $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter. |
|
1045 | + * @param string $alternativeQuery String alternative query or boolean FALSE to disable / reset the q.alt parameter. |
|
1046 | 1046 | * @see http://wiki.apache.org/solr/DisMaxQParserPlugin#q.alt |
1047 | 1047 | */ |
1048 | 1048 | public function setAlternativeQuery($alternativeQuery) |