hedera-web/rest/core/logout.php

15 lines
159 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
{
2016-09-23 22:47:34 +00:00
function run ($db)
2016-07-22 20:00:27 +00:00
{
$this->logout ();
return TRUE;
}
}
?>