Hello,
Is it possible to avoid adding "Controller" suffix to controller name? Even if I specify full namespace path (Application/Controllers/Index) in route - dispatcher is still adding Controller suffix to it, so dispatcher is trying to find Application/Controllers/IndexController.php
It seems to me be slightly annoying to add "Controller" suffix to every controller filename because I already know that this controller from it's namespace.
I can see setActionSuffix() method in Dispatcher, but I can't see anything similar for naming controllers.
Thank you!