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