<?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; /** * Represents Elasticsearch "wildcard" query. * * @link https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-wildcard-query.html */ class WildcardQuery implements BuilderInterface { use ParametersTrait; /** * @var string */ private $field; /** * @var string */ private $value; /** * @param string $field * @param string $value * @param array $parameters */ public function __construct($field, $value, array $parameters = []) { $this->field = $field; $this->value = $value; $this->setParameters($parameters); } /** * {@inheritdoc} */ public function getType() { return 'wildcard'; } /** * {@inheritdoc} */ public function toArray() { $query = [ 'value' => $this->value, ]; $output = [ $this->field => $this->processArray($query), ]; return [$this->getType() => $output]; } }