AppserverIo\Appserver\Core\Traits\ThreadedContextTrait::removeAttribute PHP Method

removeAttribute() public method

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