Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | class FsFactory implements FsFactoryInterface |
||
25 | { |
||
26 | /** |
||
27 | * @param FilesystemPluginConfigurationInterface $pluginConfiguration |
||
28 | * @param AdapterFactoryInterface $adapterFactory |
||
29 | */ |
||
30 | 1 | public function __construct( |
|
31 | private readonly FilesystemPluginConfigurationInterface $pluginConfiguration, |
||
32 | private readonly AdapterFactoryInterface $adapterFactory |
||
33 | ) { |
||
34 | 1 | } |
|
35 | |||
36 | /** |
||
37 | * {@inheritDoc} |
||
38 | */ |
||
39 | 1 | public function create($adapterName): FilesystemOperator |
|
51 | } |
||
52 | } |
||
53 |