<?php
namespace Elastica\Query;

/**
 * Match none query. Returns no results.
 *
 * @author David Causse
 *
 * @link https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-all-query.html#query-dsl-match-none-query
 */
class MatchNone extends AbstractQuery
{
    /**
     * Creates match none query.
     */
    public function __construct()
    {
        $this->_params = new \stdClass();
    }
}
