LMongo\Query\Builder::whereNe PHP Method

whereNe() public method

Add an "$ne comparison operation" clause to logical operation.
public whereNe ( string $column, string $value ) : LMongo\Query\Builder
$column string
$value string
return LMongo\Query\Builder
    public function whereNe($column, $value)
    {
        return $this->where($column, array('$ne' => $value), 'first');
    }
Builder