1<?php
2
3namespace Elastica\Query;
4
5/**
6 * Match none query. Returns no results.
7 *
8 * @author David Causse
9 *
10 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-all-query.html#query-dsl-match-none-query
11 */
12class MatchNone extends AbstractQuery
13{
14    /**
15     * Creates match none query.
16     */
17    public function __construct()
18    {
19        $this->_params = new \stdClass();
20    }
21}
22