blob: 8d0d6bef7c0ce053ed67a7af205bc4f53dfadd97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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));
}
}
|