I18nValidatorInterface.php 291 B

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