Looking at altorouter Q&A, I found this example here on how to call a named controller and method when using altorouter.
$router->map('GET','/content/[:parent]/?[:child]?', 'content_controller#display_item', 'content');
The syntax
$router(method, route, target, name(optional));
I get how to map the method, route but do not understand how to get the target to map/call an unnamed controller or method?.