summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/sql/src/Filter/NotExists.php
blob: bb8be3558fde69ce4fab53eea9da129e402c3047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace ipl\Sql\Filter;

use ipl\Sql\Select;
use ipl\Stdlib\Filter;

class NotExists extends Filter\Condition
{
    public function __construct(Select $select)
    {
        parent::__construct('', $select);
    }
}