for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace cvweiss\projectbase\Controller;
class index
{
public function doGet($render, $params)
$params['content'] = 'Hello World';
$params['title'] = 'Home Page';
$render->render("index", $params);
}