Hello again :)
currently I'm sticking on a new problem regarding the validation messages. The standard validation messages interface expects or contains the following attributes:
- type
- message
- field
But internally we need a further attribute named "code". I found out that I can overwrite the "Phalcon\Validation" and add a new message class so that I can reach that, but I would like to keep all the available functionalities from Phalcon but only overwrite the standard message system, so that for example the model would also take this new class. Is there any option where I can set the message class?
Thanks!