| Total Complexity | 7 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Coverage | 42.86% |
| 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 | 6 | public function stCannotReadFile(): string |
|
| 21 | { |
||
| 22 | 6 | return 'Cannot read file'; |
|
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | * @codeCoverageIgnore VolumeStream |
||
| 28 | */ |
||
| 29 | public function stCannotOpenFile(): string |
||
| 30 | { |
||
| 31 | return 'Cannot open file'; |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return string |
||
| 36 | * @codeCoverageIgnore VolumeStream |
||
| 37 | */ |
||
| 38 | public function stCannotSaveFile(): string |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return string |
||
| 45 | * @codeCoverageIgnore VolumeStream |
||
| 46 | */ |
||
| 47 | public function stCannotSeekFile(): string |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return string |
||
| 54 | * @codeCoverageIgnore VolumeStream |
||
| 55 | */ |
||
| 56 | public function stCannotCloseFile(): string |
||
| 59 | } |
||
| 60 | |||
| 61 | 1 | public function stStorageNotInitialized(): string |
|
| 64 | } |
||
| 65 | } |
||
| 66 |