I18nValidatorInterface.php 316 B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. interface I18nValidatorInterface {
  4. /**
  5. * Display the validation result.
  6. * Empty if there are no errors.
  7. */
  8. public function displayResult(): string;
  9. public function validate(): bool;
  10. /**
  11. * Display the validation report.
  12. */
  13. public function displayReport(): string;
  14. }