hedera-web/vn/web/rest-request.php

33 lines
471 B
PHP
Raw Normal View History

2016-08-25 10:47:09 +00:00
<?php
namespace Vn\Web;
require_once (__DIR__.'/rest-app.php');
/**
* Base class for REST services.
**/
abstract class RestRequest extends \Vn\Lib\Method
{
/**
* Authenticates the user agaisnt database and returns its associated
* database connection.
*
* return Db\Conn The database connection
**/
function login ()
{
return $this->app->login ();
}
/**
* Logouts the current user.
**/
function logout ()
{
$this->app->logout ();
}
}
?>