| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class CheckDictionariesConfig |
||
| 8 | { |
||
| 9 | /** @var array<string, <string, string>> */ |
||
|
|
|||
| 10 | private $dictionaries; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param array<string, <string, string>> $dictionaries [language => [key => translation]] |
||
| 14 | */ |
||
| 15 | public function __construct(array $dictionaries) |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return array<string, <string, string>> [language => [key => translation]] |
||
| 22 | */ |
||
| 23 | public function load(): array |
||
| 28 |