summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/LocalisationUpdate/reader/Reader.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/LocalisationUpdate/reader/Reader.php')
-rw-r--r--www/wiki/extensions/LocalisationUpdate/reader/Reader.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/www/wiki/extensions/LocalisationUpdate/reader/Reader.php b/www/wiki/extensions/LocalisationUpdate/reader/Reader.php
new file mode 100644
index 00000000..8c263ff0
--- /dev/null
+++ b/www/wiki/extensions/LocalisationUpdate/reader/Reader.php
@@ -0,0 +1,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 );
+}