-
Mantas Jonušas authoredMantas Jonušas authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
PrefixQuery.php 690 B
<?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\Query;
use ONGR\ElasticsearchBundle\DSL\Filter\PrefixFilter;
/**
* Represents Elasticsearch "prefix" query.
*/
class PrefixQuery extends PrefixFilter
{
/**
* {@inheritdoc}
*/
public function toArray()
{
$query = [
'value' => $this->value,
];
$output = [
$this->field => $this->processArray($query),
];
return $output;
}
}