File size: 278 Bytes
9a18c8c
235bfe8
9a18c8c
023cdb0
 
 
cfaf855
 
 
 
 
023cdb0
 
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
    class Welcome extends Controller{
        public function __construct(){
        }
        
        public function index(){
            $data = [
                'title' => 'New MVC app'
            ];

            $this->view('welcome/index', $data);
        }
    }