LMongo\Eloquent\Model::offsetExists PHP 메소드

offsetExists() 공개 메소드

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