summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'MLEB/LocalisationUpdate/reader/Reader.php')
-rw-r--r--MLEB/LocalisationUpdate/reader/Reader.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/MLEB/LocalisationUpdate/reader/Reader.php b/MLEB/LocalisationUpdate/reader/Reader.php
deleted file mode 100644
index f55a9372..00000000
--- a/MLEB/LocalisationUpdate/reader/Reader.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-/**
- * @file
- * @author Niklas Laxström
- * @license GPL-2.0+
- */
-
-/**
- * Interface for file readers.
- */
-interface LU_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 );
-}