AppserverIo\Appserver\Core\Traits\ThreadedContextTrait::removeAttribute PHP Méthode

removeAttribute() public méthode

Removes the attribue from the application.
public removeAttribute ( string $key ) : void
$key string The attribute to remove
Résultat void
    public function removeAttribute($key)
    {
        if (isset($this[$uid = $this->maskKey($key)])) {
            unset($this[$uid]);
        }
    }