AppserverIo\Appserver\ServletEngine\Http\SessionWrapper::removeData PHP Method

removeData() public method

Removes the session data entry $key from the session.
public removeData ( string $key ) : void
$key string Entry identifier of the session data to remove
return void
    public function removeData($key)
    {
        $this->getSession()->removeData($key);
    }