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

namespace Icinga\Data\Filter;

class FilterMatchNot extends FilterExpression
{
    public function matches($row)
    {
        return !parent::matches($row);
    }
}