Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | 2 | public function __construct(string $adapterName, array $additionalAdapters) |
|
11 | { |
||
12 | 2 | parent::__construct( |
|
13 | 2 | 'Unknown storage adapter "' . $adapterName . '".' . \PHP_EOL . |
|
14 | 2 | 'Available adapters: ' . \implode(', ', $additionalAdapters + InterfaceHelper::getImplementations(StorageInterface::class)) |
|
15 | ); |
||
18 |