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

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