| 12345678910111213141516171819 |
- <?php
- declare(strict_types=1);
- 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(bool $percentage_only = false): string;
- }
|