mvc-base/Controller/home.php

7 lines
156 B
PHP
Executable File

<?php
class home extends Controller{
protected function index(){
$viewmodel = new HomeModel();
$this->returnView($viewmodel->index(), true);
}
}