| 123456789101112131415161718 |
- <?php
- interface I18nValidatorInterface {
- /**
- * Display the validation result.
- * Empty if there are no errors.
- */
- public function displayResult(): string;
- public function validate(): bool;
- /**
- * Display the validation report.
- */
- public function displayReport(): string;
- }
|