Why should I provide the full name space of the controller to dispatch the route to ?
Not working example:
$dispatcher->forward([
'contorller' => 'notFound',
'action' => 'index',
'params' => [$any]
]);
Working example:
$dispatcher->forward([
'contorller' => 'Full\Namespace\Of\Controller\notFound',
'action' => 'index',
'params' => [$any]
]);
Phalcon version: 3.4.1