FFNMaster
654d873ba9
Has an alias techfuze/sessions for backwards compatibility. Will be removed when #74 has been resolved. Partially resolves #68
16 lines
214 B
PHP
16 lines
214 B
PHP
<?php
|
|
|
|
namespace Controller;
|
|
use \FuzeWorks\Controller;
|
|
|
|
class Standard extends Controller {
|
|
public function __construct(&$core) {
|
|
parent::__construct($core);
|
|
}
|
|
|
|
public function index($path = null) {
|
|
}
|
|
}
|
|
|
|
|
|
?>
|