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

__unset() 공개 메소드

Unset an attribute on the model.
public __unset ( string $key ) : void
$key string
리턴 void
    public function __unset($key)
    {
        unset($this->attributes[$key]);
        unset($this->relations[$key]);
    }
Model