Files
FreshRSS/cli/i18n/I18nValidatorInterface.php
Alexis Degrugillier 05b1901fcd Move translation tools into the cli folder (#1673)
Translation tools must be used on cli. It is better to have them in the cli folder.
2017-11-04 21:17:08 +01:00

27 lines
402 B
PHP

<?php
interface I18nValidatorInterface {
/**
* Display the validation result.
* Empty if there are no errors.
*
* @return array
*/
public function displayResult();
/**
* @param array $ignore Keys to ignore for validation
* @return bool
*/
public function validate($ignore);
/**
* Display the validation report.
*
* @return array
*/
public function displayReport();
}