Hi,
I'm using Phalcon\Validation\Validator\Uniqueness and I have the following rule for categories and accounts:
$validation->add(['name', 'accountId'], new Uniqueness([
'label' => 'category'
]));
I would like to know if it is possible to change the field returned by the Phalcon\Validation\Message object to "name", because "accountId" is controlled internally by the application.