for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Controllers;
use Win\Controllers\Controller;
use Win\Views\View;
class IndexController extends Controller
{
public function index()
$this->title = 'Página Inicial | ' . APP_NAME;
return new View('index');
}