Implement FilterMatchCaseInsensitive

refs #11051
This commit is contained in:
Alexander A. Klimov 2016-02-11 11:59:57 +01:00
parent 809861cb53
commit 8ebc92ee44
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<?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;
}
}