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) {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
?>
|