streams/Zotlabs/Web/Controller.php

17 lines
155 B
PHP

<?php
namespace Zotlabs\Web;
/*
* Base class for controllers
*
*/
class Controller {
function init() {}
function post() {}
function get() {}
}