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