I18nValidatorInterface.php 341 B

12345678910111213141516171819202122232425
  1. <?php
  2. interface I18nValidatorInterface {
  3. /**
  4. * Display the validation result.
  5. * Empty if there are no errors.
  6. *
  7. * @return array
  8. */
  9. public function displayResult();
  10. /**
  11. * @return bool
  12. */
  13. public function validate();
  14. /**
  15. * Display the validation report.
  16. *
  17. * @return string
  18. */
  19. public function displayReport();
  20. }