0
1
Fork 0
hedera-web-mindshore/vn/web/rest-request.php

33 lines
475 B
PHP
Raw Normal View History

2016-08-25 10:47:09 +00:00
<?php
namespace Vn\Web;
2016-08-30 07:43:47 +00:00
require_once (__DIR__.'/rest-service.php');
2016-08-25 10:47:09 +00:00
/**
* 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 ();
}
}
?>