Does Phalcon have a means to communicate errors to users? For example, I'm currently building a form. I want to show the user an error if the "Name" field isn't provided.
Traditionally in my apps, I've used a static Error class. Throughout my application if an error was generated it would get stored in the Error class. Then, right before the output gets generated, I check if that static class has any errors recorded. If so, I pass them to the template to be displayed, and the template displays them.
Does Phalcon have any functionaltiy that serves a similar purpose?