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

__isset() public méthode

Determine if an attribute exists on the model.
public __isset ( string $key ) : void
$key string
Résultat void
    public function __isset($key)
    {
        return isset($this->attributes[$key]) or isset($this->relations[$key]);
    }
Model