-
Simonas Šerlinskas authoredSimonas Šerlinskas authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
TermsQuery.php 1.18 KiB
<?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\Query;
use ONGR\ElasticsearchDSL\BuilderInterface;
use ONGR\ElasticsearchDSL\ParametersTrait;
/**
* Elasticsearch terms query class.
*/
class TermsQuery implements BuilderInterface
{
use ParametersTrait;
/**
* @var string
*/
private $field;
/**
* @var array
*/
private $tags;
/**
* @param string $field
* @param array $tags
* @param array $parameters
*/
public function __construct($field, $tags, array $parameters = [])
{
$this->field = $field;
$this->tags = $tags;
$this->setParameters($parameters);
}
/**
* {@inheritdoc}
*/
public function getType()
{
return 'terms';
}
/**
* {@inheritdoc}
*/
public function toArray()
{
$query = [
$this->field => $this->tags,
];
$output = $this->processArray($query);
return $output;
}
}