summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/LocalisationUpdate/reader/Reader.php
blob: 8c263ff0b3570196dd3ffdf672ae2c6aac4d48fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * @file
 * @author Niklas Laxström
 * @license GPL-2.0+
 */

namespace LocalisationUpdate;

/**
 * Interface for file readers.
 */
interface Reader {
	/**
	 * Returns a list of messages indexed by language code. Example
	 *  array( 'en' => array( 'key' => 'value' ) );
	 * @param string $contents File contents as a string.
	 * @return array
	 */
	public function parse( $contents );
}