for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Cms;
class Module
{
public function registerAutoloaders()
}
public function registerServices($di)
$dispatcher = $di->get('dispatcher');
$dispatcher->setDefaultNamespace("Cms\Controller");
$di->set('dispatcher', $dispatcher);
/**
* Setting up the view component
*/
$view = $di->get('view');
$view->setViewsDir(__DIR__ . '/views/');