diff --git a/src/Aggregation/Pipeline/MinBucketAggregation.php b/src/Aggregation/Pipeline/MinBucketAggregation.php new file mode 100644 index 0000000000000000000000000000000000000000..8c4d64f8663132a85580cfb60b41a099db6886e0 --- /dev/null +++ b/src/Aggregation/Pipeline/MinBucketAggregation.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 Min Bucket Pipeline Aggregation. + * + * @link https://goo.gl/5oo4XH + */ +class MinBucketAggregation extends AbstractPipelineAggregation +{ + /** + * {@inheritdoc} + */ + public function getType() + { + return 'min_bucket'; + } +}