Simple MVC by In Mean

Missing default controller

Default controller must name home.php

class Home extends Controller {
	public function __construct()
	{
		parent::__construct();
	}
	public function index()
	{
		$this->view->render("IndexView");
	}
}