for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use mvc\core\meta\Controller;
class SiteController extends Controller
{
public function index(): string
return $this->render('index');
}
public function about(): string
return $this->render('about');