21 lines
340 B
PHP
Executable File
21 lines
340 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use Core\Controller;
|
|
|
|
class SiteController extends Controller
|
|
{
|
|
public function home()
|
|
{
|
|
return $this->render('home', [
|
|
'name' => 'My PHP MVC Framework'
|
|
]);
|
|
}
|
|
|
|
public function contact()
|
|
{
|
|
return $this->render('contact');
|
|
}
|
|
}
|