I'm using micro collections as modules in a large application and I'm trying to figure out how to define multiple handlers in a collection. If I call setHandler multiple times on the last call is used when finding routes. When I look at https://docs.phalcon.io/en/latest/api/Phalcon_Mvc_Micro_Collection.html.
I notice that it has a method getHandlers that returns all the handlers registered in this collection, but I can't see how to register multiple handlers. I want to do this because my application uses one type of controller for the rest api call and a different api call for my views.