mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-29 23:51:04 -05:00
* PHPStan level 6 for all PDO and Exception classes Contributes to https://github.com/FreshRSS/FreshRSS/issues/4112 * Fix type * Now also our remaining own librairies * Motivation for a few more files * A few more DAO classes * Last interface
19 lines
291 B
PHP
19 lines
291 B
PHP
<?php
|
|
|
|
interface I18nValidatorInterface {
|
|
|
|
/**
|
|
* Display the validation result.
|
|
* Empty if there are no errors.
|
|
*/
|
|
public function displayResult(): string;
|
|
|
|
public function validate(): bool;
|
|
|
|
/**
|
|
* Display the validation report.
|
|
*/
|
|
public function displayReport(): string;
|
|
|
|
}
|