hedera-web/web/rest-request.php

22 lines
259 B
PHP

<?php
namespace Vn\Web;
class Security
{
const DEFINER = 1;
const INVOKER = 2;
}
/**
* Base class for REST services.
**/
abstract class RestRequest extends \Vn\Lib\Method
{
const PARAMS = NULL;
const SECURITY = Security::DEFINER;
var $service;
}