Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | 1 | public function createFsOperator(string $adapterName = FilesystemPluginConfigurationInterface::ADAPTER_DEFAULT): FilesystemOperator |
|
25 | { |
||
26 | 1 | $message = <<<EOF |
|
27 | The `%s` adapter cannot be initialized. |
||
28 | Please check if you have made a mistake in the naming or if you have not installed it. |
||
29 | 1 | EOF; |
|
30 | |||
31 | 1 | throw new \Exception(sprintf($message, $adapterName)); |
|
32 | } |
||
34 |