Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/translations/AbstractLang.php')
-rw-r--r--src/translations/AbstractLang.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/translations/AbstractLang.php b/src/translations/AbstractLang.php
new file mode 100644
index 00000000..84a6ee92
--- /dev/null
+++ b/src/translations/AbstractLang.php
@@ -0,0 +1,26 @@
+<?php
+
+/**
+ * PHPPgAdmin 6.0.0
+ */
+
+namespace PHPPgAdmin\Translations;
+
+/**
+ * Class providing translation for Ukrainian language.
+ */
+abstract class AbstractLang
+{
+ /**
+ * @var array
+ */
+ protected $lang = [];
+
+ /**
+ * @return array
+ */
+ public function getLang(): array
+ {
+ return $this->lang;
+ }
+}