summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/lib/Elastica/Filter/Bool.php
blob: 0d30f83f7b725e203d684e15e32f12ce350130fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
namespace Elastica\Filter;

/**
 * Bool Filter.
 *
 * This class is for backward compatibility reason for all php < 7 versions. For PHP 7 and above use BoolFilter as Bool is reserved.
 *
 * @author Nicolas Ruflin <spam@ruflin.com>
 *
 * @link http://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-bool-filter.html
 */
class Bool extends BoolFilter
{
}