streams/Code/Web/Controller.php

25 lines
209 B
PHP
Raw Normal View History

2016-04-15 23:13:55 +00:00
<?php
2022-02-16 04:08:28 +00:00
namespace Code\Web;
2016-04-15 23:13:55 +00:00
/*
* Base class for controllers
*
*/
2016-04-15 23:13:55 +00:00
2021-12-02 23:02:31 +00:00
class Controller
{
2016-04-15 23:13:55 +00:00
2021-12-02 23:02:31 +00:00
public function init()
{
}
public function post()
{
}
public function get()
{
}
2016-06-15 03:30:34 +00:00
}