for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace app\Controllers\Admin;
use System\Controller as Controller;
class HomeController extends Controller
{
public function index()
$context = [
];
return $this->view->render('admin/pages/home', $context);
}