summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Filter/MatchAll.php
blob: a69b65a219756de38fab3a90124c4b387c384f1e (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\Filter;

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