aboutsummaryrefslogtreecommitdiff
path: root/cli/i18n/I18nValidatorInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'cli/i18n/I18nValidatorInterface.php')
-rw-r--r--cli/i18n/I18nValidatorInterface.php13
1 files changed, 3 insertions, 10 deletions
diff --git a/cli/i18n/I18nValidatorInterface.php b/cli/i18n/I18nValidatorInterface.php
index d5681912b..e6f5f7cdd 100644
--- a/cli/i18n/I18nValidatorInterface.php
+++ b/cli/i18n/I18nValidatorInterface.php
@@ -5,21 +5,14 @@ interface I18nValidatorInterface {
/**
* Display the validation result.
* Empty if there are no errors.
- *
- * @return array
*/
- public function displayResult();
+ public function displayResult(): string;
- /**
- * @return bool
- */
- public function validate();
+ public function validate(): bool;
/**
* Display the validation report.
- *
- * @return string
*/
- public function displayReport();
+ public function displayReport(): string;
}