1 | <?php |
||
19 | class GeoCentroidAggregation extends AbstractAggregation |
||
20 | { |
||
21 | use MetricTrait; |
||
22 | |||
23 | /** |
||
24 | * Inner aggregations container init. |
||
25 | * |
||
26 | * @param string $name |
||
27 | * @param string $field |
||
28 | */ |
||
29 | public function __construct($name, $field = null) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function getArray() |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function getType() |
||
58 | } |
||
59 |