Test Failed
Pull Request — develop (#340)
by Felipe
03:49
created

AbstractLang   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 13
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getLang() 0 3 1
1
<?php
2
3
/**
4
 * PHPPgAdmin 6.0.0
5
 */
6
7
namespace PHPPgAdmin\Translations;
8
9
/**
10
 * Class providing translation for Ukrainian language.
11
 */
12
abstract class AbstractLang
13
{
14
    /**
15
     * @var array
16
     */
17
    protected $lang = [];
18
19
    /**
20
     * @return array
21
     */
22
    public function getLang(): array
23
    {
24
        return $this->lang;
25
    }
26
}
27