mirror of
https://github.com/Respect/Validation.git
synced 2026-03-14 22:35:45 +01:00
Fix wrong PublicDomainSuffix template
When the input is not a public domain suffix, we should say that it's "not" a a public domain suffix, not that it is one. Reported on: https://github.com/Respect/Validation/issues/1539
This commit is contained in:
parent
9cbb563a84
commit
79f214c3bc
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ class PublicDomainSuffixException extends ValidationException
|
|||
self::STANDARD => '{{name}} must be a public domain suffix',
|
||||
],
|
||||
self::MODE_NEGATIVE => [
|
||||
self::STANDARD => '{{name}} must be a public domain suffix',
|
||||
self::STANDARD => '{{name}} must not be a public domain suffix',
|
||||
],
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue