Im using Phalcon 3.2.1
In the docs it says if you new up Router like so
$router = new Router(false);
It will disable the default routing stuff. I have done this and it is still trying to do the default routing.
My code
# region Router Init
use Phalcon\Mvc\Router\Group;
use Phalcon\Mvc\Router;
/**
* @var $router Phalcon\Mvc\Router()
*/
$router = new Router(false);
$router->setDI($di);
# endregion
$router->add('/', 'Index::index');
$router->addGet('/home', 'Index::index');
When going to /home i get the error 'HomeController handler class cannot be loaded'