A free, self-hostable aggregator…
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
341 B

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