14 lines
115 B
PHP
14 lines
115 B
PHP
<?php
|
|
|
|
namespace Zotlabs\Web;
|
|
|
|
|
|
class Controller {
|
|
|
|
function init() {}
|
|
function post() {}
|
|
function get() {}
|
|
|
|
}
|
|
|