summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/LocalisationUpdate/includes/reader/Reader.php
blob: fd37322e08af6f4f5305629cf82cf32f766357f7 (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-or-later
 */

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 );
}