summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Query/MatchAll.php
blob: 23b4fdfc749bfabcdca3c139b908a758410f7dcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

namespace Elastica\Query;

/**
 * Match all query. Returns all results
 *
 * @category Xodoa
 * @package Elastica
 * @author Nicolas Ruflin <spam@ruflin.com>
 * @link http://www.elasticsearch.org/guide/reference/query-dsl/match-all-query.html
 */
class MatchAll extends AbstractQuery
{
    /**
     * Creates match all query
     */
    public function __construct()
    {
        $this->_params = new \stdClass();
    }
}