hedera-web/rest/core/logout.php

16 lines
175 B
PHP
Raw Normal View History

2016-07-22 20:00:27 +00:00
<?php
require_once ('vn/web/json-request.php');
class Logout extends Vn\Web\JsonRequest
{
function run ()
{
$this->login ();
$this->logout ();
return TRUE;
}
}
?>