LMongo\Query\Builder::norWhereExists PHP Method

norWhereExists() public method

Add an "$exists element operation" clause to logical $nor operation.
public norWhereExists ( string $column, boolean $exists = true ) : LMongo\Query\Builder
$column string
$exists boolean
return LMongo\Query\Builder
    public function norWhereExists($column, $exists = true)
    {
        return $this->where($column, array('$exists' => $exists), '$nor');
    }
Builder