LdapTools\Query\Builder\FilterBuilder::neq PHP Method

neq() public method

A convenience method for a not-equal-to comparison.
public neq ( $attribute, $value ) : bNot
$attribute
$value
return LdapTools\Query\Operator\bNot
    public function neq($attribute, $value)
    {
        return new bNot($this->eq($attribute, $value));
    }