@@ -12,6 +12,9 @@ |
||
12 | 12 | */ |
13 | 13 | class Filter extends AbstractAggregation |
14 | 14 | { |
15 | + /** |
|
16 | + * @param AbstractQuery $filter |
|
17 | + */ |
|
15 | 18 | public function __construct(string $name, ?AbstractQuery $filter = null) |
16 | 19 | { |
17 | 20 | parent::__construct($name); |
@@ -25,6 +25,7 @@ |
||
25 | 25 | * |
26 | 26 | * If a name is given, it will be added as a key, otherwise considered as an anonymous filter |
27 | 27 | * |
28 | + * @param string $name |
|
28 | 29 | * @return $this |
29 | 30 | */ |
30 | 31 | public function addFilter(AbstractQuery $filter, ?string $name = null): self |
@@ -164,7 +164,7 @@ |
||
164 | 164 | * Add value to a key. If original value is not an array, value is wrapped. |
165 | 165 | * |
166 | 166 | * @param string $key Key to add |
167 | - * @param mixed $value Value |
|
167 | + * @param string $value Value |
|
168 | 168 | */ |
169 | 169 | public function add(string $key, $value): void |
170 | 170 | { |
@@ -15,10 +15,10 @@ discard block |
||
15 | 15 | * @see http://php.net/manual/en/function.json-decode.php |
16 | 16 | * @see http://php.net/manual/en/function.json-last-error.php |
17 | 17 | * |
18 | - * @param string $args,... JSON string to parse |
|
19 | 18 | * |
20 | 19 | * @throws JSONParseException |
21 | 20 | * |
21 | + * @param string $args |
|
22 | 22 | * @return array PHP array representation of JSON string |
23 | 23 | */ |
24 | 24 | public static function parse($args/* inherit from json_decode */) |
@@ -49,7 +49,6 @@ discard block |
||
49 | 49 | * @see http://php.net/manual/en/function.json-encode.php |
50 | 50 | * @see http://php.net/manual/en/function.json-last-error.php |
51 | 51 | * |
52 | - * @param mixed $args,... Target to stringify |
|
53 | 52 | * |
54 | 53 | * @throws JSONParseException |
55 | 54 | * |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | /** |
41 | 41 | * Add must not part to query. |
42 | 42 | * |
43 | - * @param AbstractQuery|array $args Must not query |
|
43 | + * @param Ids $args Must not query |
|
44 | 44 | * |
45 | 45 | * @return $this |
46 | 46 | */ |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | /** |
94 | 94 | * Sets the minimum number of should clauses to match. |
95 | 95 | * |
96 | - * @param int|string $minimum Minimum value |
|
96 | + * @param integer $minimum Minimum value |
|
97 | 97 | * |
98 | 98 | * @return $this |
99 | 99 | */ |
@@ -44,7 +44,7 @@ |
||
44 | 44 | /** |
45 | 45 | * Set optional parameters on the existing query. |
46 | 46 | * |
47 | - * @param mixed $value Value of the parameter |
|
47 | + * @param double $value Value of the parameter |
|
48 | 48 | * |
49 | 49 | * @return $this |
50 | 50 | */ |
@@ -76,7 +76,7 @@ |
||
76 | 76 | /** |
77 | 77 | * Get the value of the given field. |
78 | 78 | * |
79 | - * @param mixed $key |
|
79 | + * @param string $key |
|
80 | 80 | * |
81 | 81 | * @throws InvalidException If the given field does not exist |
82 | 82 | * |
@@ -154,7 +154,7 @@ |
||
154 | 154 | /** |
155 | 155 | * Update entries in the db based on a query. |
156 | 156 | * |
157 | - * @param array|Query|string $query Query object or array |
|
157 | + * @param string $query Query object or array |
|
158 | 158 | * @param AbstractScript $script Script |
159 | 159 | * @param array $options Optional params |
160 | 160 | * |
@@ -399,6 +399,9 @@ |
||
399 | 399 | return $index; |
400 | 400 | } |
401 | 401 | |
402 | + /** |
|
403 | + * @param TopHits $innerAggr |
|
404 | + */ |
|
402 | 405 | protected function getOuterAggregationResult($innerAggr) |
403 | 406 | { |
404 | 407 | $outerAggr = new Terms('top_tags'); |