* @link http://www.oxidmodule.com */ namespace D3\Totp\Modules\Application\Model; use OxidEsales\Eshop\Core\Registry; class d3_totp_user extends d3_totp_user_parent { public function logout() { $return = parent::logout(); // deleting session info Registry::getSession()->deleteVariable('totp_auth'); return $return; } }