for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
// namespace Anax\Page;
namespace Marcusgsta\Page;
use \Anax\DI\InjectionAwareInterface;
use \Anax\DI\InjectionAwareTrait;
/**
* A default page rendering class.
*/
class DebugController implements InjectionAwareInterface
{
use InjectionAwareTrait;
* Render a page displaying information.
*
* @return void
public function info()
$this->di->get("view")->add("default2/info");
$this->di->get("pageRender")->renderPage([
"title" => "Info",
]);
}