LMongo\Eloquent\Model::offsetExists PHP Method

offsetExists() public method

Determine if the given attribute exists.
public offsetExists ( mixed $offset ) : boolean
$offset mixed
return boolean
    public function offsetExists($offset)
    {
        return isset($this->{$offset});
    }
Model