aboutsummaryrefslogtreecommitdiff
path: root/cli/i18n/I18nValidatorInterface.php
blob: d5681912b7474a582153272338a68a89d6dc3213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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();

}