diff --git a/src/Aggregation/Pipeline/ExtendedStatsBucketAggregation.php b/src/Aggregation/Pipeline/ExtendedStatsBucketAggregation.php new file mode 100644 index 0000000000000000000000000000000000000000..aa8697a7b9617b5bb81aa9b5154c92ee5a6717ce --- /dev/null +++ b/src/Aggregation/Pipeline/ExtendedStatsBucketAggregation.php @@ -0,0 +1,28 @@ +<?php + +/* + * This file is part of the ONGR package. + * + * (c) NFQ Technologies UAB <info@nfq.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ONGR\ElasticsearchDSL\Aggregation\Pipeline; + +/** + * Class representing Extended Stats Bucket Pipeline Aggregation. + * + * @link https://goo.gl/rn8vtA + */ +class ExtendedStatsBucketAggregation extends AbstractPipelineAggregation +{ + /** + * {@inheritdoc} + */ + public function getType() + { + return 'extended_stats_bucket'; + } +}