%PDF- %PDF-
| Direktori : /home/graphicd/public_html/vebto/vendor/ongr/elasticsearch-dsl/src/Query/TermLevel/ |
| Current File : /home/graphicd/public_html/vebto/vendor/ongr/elasticsearch-dsl/src/Query/TermLevel/PrefixQuery.php |
<?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\TermLevel;
use ONGR\ElasticsearchDSL\BuilderInterface;
use ONGR\ElasticsearchDSL\ParametersTrait;
/**
* Represents Elasticsearch "prefix" query.
*
* @link https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-prefix-query.html
*/
class PrefixQuery implements BuilderInterface
{
use ParametersTrait;
/**
* @var string
*/
protected $field;
/**
* @var string
*/
protected $value;
/**
* @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 = [
'value' => $this->value,
];
$output = [
$this->field => $this->processArray($query),
];
return [$this->getType() => $output];
}
}