summaryrefslogtreecommitdiffstats
path: root/library/Icinga/Data/Filter/FilterMatchCaseInsensitive.php
blob: 9eca17374aca8db05b5a517150db53cf0e274efe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
/* Icinga Web 2 | (c) 2016 Icinga Development Team | GPLv2+ */

namespace Icinga\Data\Filter;

class FilterMatchCaseInsensitive extends FilterMatch
{
    public function __construct($column, $sign, $expression)
    {
        parent::__construct($column, $sign, $expression);
        $this->caseSensitive = false;
    }
}