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