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

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