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

AbstractLang.php « translations « src - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84a6ee926b75f1179b1486159c310341e5ca9a5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
    }
}