get init() working with class modules

This commit is contained in:
redmatrix
2016-04-15 16:13:55 -07:00
parent aaa327ca05
commit 07650b4646
2 changed files with 27 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace Zotlabs\Web;
class Controller {
function init() {}
function post() {}
function get() {}
}