diff options
Diffstat (limited to 'vendor/ruflin/elastica/lib/Elastica/Aggregation/Terms.php')
-rw-r--r-- | vendor/ruflin/elastica/lib/Elastica/Aggregation/Terms.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/lib/Elastica/Aggregation/Terms.php b/vendor/ruflin/elastica/lib/Elastica/Aggregation/Terms.php new file mode 100644 index 00000000..8d0d6bef --- /dev/null +++ b/vendor/ruflin/elastica/lib/Elastica/Aggregation/Terms.php @@ -0,0 +1,23 @@ +<?php +namespace Elastica\Aggregation; + +/** + * Class Terms. + * + * @link http://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html + */ +class Terms extends AbstractTermsAggregation +{ + /** + * Set the bucket sort order. + * + * @param string $order "_count", "_term", or the name of a sub-aggregation or sub-aggregation response field + * @param string $direction "asc" or "desc" + * + * @return $this + */ + public function setOrder($order, $direction) + { + return $this->setParam('order', array($order => $direction)); + } +} |