Skip to content
Snippets Groups Projects
SpanNotQuery.php 1.43 KiB
Newer Older
Mantas Jonušas's avatar
Mantas Jonušas committed
<?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\Span;
Mantas Jonušas's avatar
Mantas Jonušas committed

use ONGR\ElasticsearchDSL\ParametersTrait;
Mantas Jonušas's avatar
Mantas Jonušas committed

/**
 * Elasticsearch Span not query.
 *
 * @link https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-span-not-query.html
Mantas Jonušas's avatar
Mantas Jonušas committed
 */
class SpanNotQuery implements SpanQueryInterface
{
    use ParametersTrait;

    /**
     * @var SpanQueryInterface
     */
    private $include;

    /**
     * @var SpanQueryInterface
     */
    private $exclude;

    /**
     * @param SpanQueryInterface $include
     * @param SpanQueryInterface $exclude
     * @param array              $parameters
     */
    public function __construct(SpanQueryInterface $include, SpanQueryInterface $exclude, array $parameters = [])
    {
        $this->include = $include;
        $this->exclude = $exclude;
        $this->setParameters($parameters);
    }

    /**
     * {@inheritdoc}
     */
    public function getType()
    {
        return 'span_not';
    }

    /**
     * {@inheritdoc}
     */
    public function toArray()
    {
        $query = [
            'include' => $this->include->toArray(),
            'exclude' => $this->exclude->toArray(),
Mantas Jonušas's avatar
Mantas Jonušas committed
        ];

        return [$this->getType() => $this->processArray($query)];
Mantas Jonušas's avatar
Mantas Jonušas committed
    }
}