aboutsummaryrefslogtreecommitdiff
path: root/cli/i18n/I18nFileInterface.php
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <aledeg@users.noreply.github.com> 2018-03-12 23:37:26 +0100
committerGravatar GitHub <noreply@github.com> 2018-03-12 23:37:26 +0100
commita891df3283073abac1696725aee3b6a72372dc19 (patch)
treec5ab91b7bd98a72f79f5e8c51db9bef8ab75def5 /cli/i18n/I18nFileInterface.php
parent380f17788e96e578122e30ff64ba426f7f94a23a (diff)
parentf4da01294023146cd1f4bc13f1ba5f77702bb41b (diff)
Merge pull request #1829 from aledeg/improve-i18n-tools
Improve i18n tools
Diffstat (limited to 'cli/i18n/I18nFileInterface.php')
-rw-r--r--cli/i18n/I18nFileInterface.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/i18n/I18nFileInterface.php b/cli/i18n/I18nFileInterface.php
new file mode 100644
index 000000000..c5aaf9fcd
--- /dev/null
+++ b/cli/i18n/I18nFileInterface.php
@@ -0,0 +1,10 @@
+<?php
+
+require_once __DIR__ . '/I18nData.php';
+
+interface I18nFileInterface {
+
+ public function load();
+
+ public function dump(I18nData $i18n);
+}