streams/Zotlabs/Web/Controller.php

18 lines
155 B
PHP
Raw Normal View History

2016-04-15 23:13:55 +00:00
<?php
namespace Zotlabs\Web;
/*
* Base class for controllers
*
*/
2016-04-15 23:13:55 +00:00
class Controller {
function init() {}
function post() {}
function get() {}
2016-06-15 03:30:34 +00:00
}