for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Controllers;
use Core\Lib\Controller;
class HomeController extends Controller
{
public function index()
$this->params['title'] = 'Sephy Simple PHP Framework';
return $this->view('home.index', $this->params);
}
public function subpage()
$this->params['title'] = 'Sephy Simple PHP Framework - Sub Page';
return $this->view('home.subpage', $this->params);