diff options
| author | Asko Nõmm <asko@repl.ee> | 2023-09-25 17:29:52 +0300 |
|---|---|---|
| committer | Asko Nõmm <asko@repl.ee> | 2023-09-25 17:29:52 +0300 |
| commit | 57518b03cbf19b8a714d6fcb573f71cb921005e3 (patch) | |
| tree | 240509fd84f023f289a83577a735fa82fac879f4 /src/Validators/EmailValidator.php | |
| parent | 8ebb9ca9fbce0982e27296d5016d17d8b20962d6 (diff) | |
Implement `$fieldNames`, a way to overwrite field names to be more human friendly in error messages.
Diffstat (limited to 'src/Validators/EmailValidator.php')
| -rw-r--r-- | src/Validators/EmailValidator.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Validators/EmailValidator.php b/src/Validators/EmailValidator.php index bbb237f..fac4c04 100644 --- a/src/Validators/EmailValidator.php +++ b/src/Validators/EmailValidator.php @@ -12,6 +12,12 @@ namespace Asko\Hird\Validators; */ class EmailValidator implements Validator { + public function __construct( + private array $fields, + private array $fieldNames, + ) { + } + /** * Returns a boolean `true` when given `$value` is a valid e-mail * address. Returns `false` otherwise. @@ -34,6 +40,6 @@ class EmailValidator implements Validator */ public function composeError(string $field, mixed $modifier = null): string { - return "{$field} is not a valid e-mail address."; + return "{$this->fieldNames[$field]} is not a valid e-mail address."; } } |
