parent
809861cb53
commit
8ebc92ee44
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue