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\ElasticsearchDSL\Query;
use ONGR\ElasticsearchDSL\BuilderInterface;
Simonas Šerlinskas
committed
use ONGR\ElasticsearchDSL\FilterOrQueryDetectionTrait;
use ONGR\ElasticsearchDSL\ParametersTrait;
/**
* Constant score query class.
*/
class ConstantScoreQuery implements BuilderInterface
{
use ParametersTrait;
Simonas Šerlinskas
committed
use FilterOrQueryDetectionTrait;
public function __construct(BuilderInterface $query, array $parameters = [])
$this->setParameters($parameters);
}
/**
* {@inheritdoc}
*/
public function getType()
{
return 'constant_score';
}
/**
* {@inheritdoc}
*/
public function toArray()
{
$query = [
Simonas Šerlinskas
committed
$this->detectDslType($this->query) => [