I have checked this HMVC example:
https://github.com/phalcon/mvc/tree/master/hmvc
It is good example on how to make HMVC request cross controller, but is it also possible to do the same in case of cross modules?
For example I'm in Module (A) - Controller (AC) - Action (ACN), and I need to make HMVC request to Module (B) - Controller (BC) - Action (BCN).
Is it possible using dispatcher? and should I register my modules first with their services and loaders?
Thank you