| 1 | <?php | ||
| 20 | class ExtendedStatsAggregation extends AbstractAggregation | ||
| 21 | { | ||
| 22 | use MetricTrait; | ||
| 23 | use ScriptAwareTrait; | ||
| 24 | |||
| 25 | /** | ||
| 26 | * @var int | ||
| 27 | */ | ||
| 28 | private $sigma; | ||
| 29 | |||
| 30 | /** | ||
| 31 | * @return int | ||
| 32 | */ | ||
| 33 | public function getSigma() | ||
| 37 | |||
| 38 | /** | ||
| 39 | * @param int $sigma | ||
| 40 | */ | ||
| 41 | public function setSigma($sigma) | ||
| 45 | |||
| 46 | /** | ||
| 47 |      * {@inheritdoc} | ||
| 48 | */ | ||
| 49 | public function getType() | ||
| 53 | |||
| 54 | /** | ||
| 55 |      * {@inheritdoc} | ||
| 56 | */ | ||
| 57 | public function getArray() | ||
| 72 | } | ||
| 73 |