blob: 522090d5d18596d1239100fd4a95dda384ab0fcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
namespace Elastica\Facet;
use Elastica\Query\AbstractQuery;
/**
* Query facet.
*
* @author Nicolas Ruflin <spam@ruflin.com>
*
* @link http://www.elastic.co/guide/en/elasticsearch/reference/current/search-facets-query-facet.html
* @deprecated Facets are deprecated and will be removed in a future release. You are encouraged to migrate to aggregations instead.
*/
class Query extends AbstractFacet
{
/**
* Set the query for the facet.
*
* @param \Elastica\Query\AbstractQuery $query
*
* @return $this
*/
public function setQuery(AbstractQuery $query)
{
return $this->_setFacetParam('query', $query->toArray());
}
}
|