Closed alwex closed 7 years ago
While declaring additional fields as required for subscription, the validation does not handle it correctly because of this line:
$required = new RequiredFields($requiredFields);
where fields name are the keys and not the values, a fix would be
$required = new RequiredFields(array_keys(array_filter($requiredFields)));
While declaring additional fields as required for subscription, the validation does not handle it correctly because of this line:
where fields name are the keys and not the values, a fix would be