From 94dea9a5d40dae230d8e151960285cd98fb300e7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mantas=20Marcinkevi=C4=8Dius?= <marc.mantas@gmail.com>
Date: Mon, 29 Aug 2016 11:27:53 +0300
Subject: [PATCH] added extended stats bucket aggregation

---
 .../ExtendedStatsBucketAggregation.php        | 28 +++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 src/Aggregation/Pipeline/ExtendedStatsBucketAggregation.php

diff --git a/src/Aggregation/Pipeline/ExtendedStatsBucketAggregation.php b/src/Aggregation/Pipeline/ExtendedStatsBucketAggregation.php
new file mode 100644
index 0000000..aa8697a
--- /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';
+    }
+}
-- 
GitLab