| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class AwsFilesystemFacadeDecorator implements FilesystemFacadeInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @param FilesystemFacadeInterface $filesystemFacade |
||
| 26 | * @param FsFactoryInterface $fsFactory |
||
| 27 | * @param FilesystemPluginConfigurationInterface $adapterConfiguration |
||
| 28 | */ |
||
| 29 | 2 | public function __construct( |
|
| 30 | private readonly FilesystemFacadeInterface $filesystemFacade, |
||
| 31 | private readonly FsFactoryInterface $fsFactory, |
||
| 32 | private readonly FilesystemPluginConfigurationInterface $adapterConfiguration |
||
| 33 | ) { |
||
| 34 | 2 | } |
|
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritDoc} |
||
| 38 | */ |
||
| 39 | 2 | public function createFsOperator(string $adapterName = FilesystemPluginConfigurationInterface::ADAPTER_DEFAULT): FilesystemOperator |
|
| 46 | } |
||
| 47 | } |
||
| 48 |