Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.0185 |
Changes | 0 |
1 | <?php |
||
23 | 18 | public function __construct(string $lang, array $translation = []) |
|
24 | { |
||
25 | 18 | $this->lang = $lang; |
|
26 | |||
27 | 18 | if (!empty($translation)) { |
|
28 | $this->translation = $translation; |
||
29 | } else { |
||
30 | 18 | $this->translation = include implode(DIRECTORY_SEPARATOR, [dirname(__FILE__), '..', 'lang', $this->lang . '.php']); |
|
31 | } |
||
32 | 18 | } |
|
33 | |||
50 | } |