Implement FilterMatchNotCaseInsensitive

refs #11051
This commit is contained in:
Alexander A. Klimov 2016-02-11 12:00:33 +01:00
parent 8ebc92ee44
commit aae7c1150e

View File

@ -0,0 +1,12 @@
<?php
/* Icinga Web 2 | (c) 2016 Icinga Development Team | GPLv2+ */
namespace Icinga\Data\Filter;
class FilterMatchNotCaseInsensitive extends FilterMatchNot
{
public function __construct($column, $sign, $expression) {
parent::__construct($column, $sign, $expression);
$this->caseSensitive = false;
}
}