1 | <?php |
||
21 | class GeoCentroidAggregation extends AbstractAggregation |
||
22 | { |
||
23 | use MetricTrait; |
||
24 | |||
25 | /** |
||
26 | * Inner aggregations container init. |
||
27 | * |
||
28 | * @param string $name |
||
29 | * @param string $field |
||
30 | */ |
||
31 | public function __construct($name, $field = null) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function getArray() |
||
54 | |||
55 | /** |
||
56 | * {@inheritdoc} |
||
57 | */ |
||
58 | public function getType() |
||
62 | } |
||
63 |