Hello, I'd like to know if it is possible to do this :
public function validation()
{
// Name required
$this->validate(new PresenceOf(
[
'field' => ['columnA', 'columnB', 'columnC'],
'message' => [
'The columnA is required',
'The columnB is required',
'The columnC is required'
]
]
));
On different validator interface. I don't see anything about it on the doc but I know this is possible to pass an array of column to 'field' for the EmailValidator
Cheer,