Total Complexity | 5 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Translations implements IStTranslations |
||
14 | { |
||
15 | 1 | public function stCannotReadKey(): string |
|
16 | { |
||
17 | 1 | return 'Cannot read key'; |
|
18 | } |
||
19 | |||
20 | 4 | public function stCannotReadFile(): string |
|
23 | } |
||
24 | |||
25 | 1 | public function stStorageNotInitialized(): string |
|
26 | { |
||
27 | 1 | return 'Storage not initialized'; |
|
28 | } |
||
29 | |||
30 | 1 | public function stPathNotFound(): string |
|
31 | { |
||
32 | 1 | return 'Path in storage not found.'; |
|
33 | } |
||
34 | |||
35 | 20 | public function stConfigurationUnavailable(): string |
|
38 | } |
||
39 | } |
||
40 |