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