LMongo\Eloquent\Model::__unset PHP Méthode

__unset() public méthode

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