From 07a63303e09ded05df9d32dad9875a1a28357d11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mantas=20Marcinkevi=C4=8Dius?= <marc.mantas@gmail.com> Date: Mon, 29 Aug 2016 10:19:04 +0300 Subject: [PATCH] added avg bucket pipeline aggregation --- .../Pipeline/AvgBucketAggregation.php | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/Aggregation/Pipeline/AvgBucketAggregation.php diff --git a/src/Aggregation/Pipeline/AvgBucketAggregation.php b/src/Aggregation/Pipeline/AvgBucketAggregation.php new file mode 100644 index 0000000..69e0f93 --- /dev/null +++ b/src/Aggregation/Pipeline/AvgBucketAggregation.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 Avg Bucket Pipeline Aggregation. + * + * @link https://goo.gl/SWK2nP + */ +class AvgBucketAggregation extends AbstractPipelineAggregation +{ + /** + * {@inheritdoc} + */ + public function getType() + { + return 'avg_bucket'; + } +} -- GitLab