Newer
Older
<?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\ElasticsearchBundle\DSL\Filter;
use ONGR\ElasticsearchBundle\DSL\BuilderInterface;
use ONGR\ElasticsearchBundle\DSL\ParametersTrait;
/**
* Represents Elasticsearch "prefix" filter.
*
* Filters documents that have fields containing terms with a specified prefix.
*/
class PrefixFilter implements BuilderInterface
{
use ParametersTrait;
/**
* @var string
*/
/**
* @param string $field Field name.
* @param string $value Value.
* @param array $parameters Optional parameters.
*/
public function __construct($field, $value, array $parameters = [])
{
$this->field = $field;
$this->value = $value;
$this->setParameters($parameters);
}
/**
* {@inheritdoc}
*/
public function getType()
{
return 'prefix';
}
/**
* {@inheritdoc}
*/
public function toArray()
{
$query = [$this->field => $this->value];
$output = $this->processArray($query);
return $output;
}
}