How can I detect that the controller "someController" has action "someAction" without Reflection? Do Phalcon has some mechanisms for it?
I think the unique way is use reflection or use method exists:
var_dump(method_exists('someController','someAction'));
https://php.net/manual/fr/function.method-exists.php
Good idea, thanks.