Core/Application/Controller/controller.standard.php
FFNMaster 68b3b402e7 Made the core of FuzeWorks static.
Resolves #74

More tests are needed in order to prove functioning of renewed core
2015-09-05 21:47:35 +02:00

15 lines
189 B
PHP

<?php
namespace Controller;
use \FuzeWorks\Controller;
use \FuzeWorks\Layout;
class Standard extends Controller {
public function index($path = null) {
Layout::view('home');
}
}
?>