Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class LocalFileSystemFactory implements FileSystemFactoryInterface |
||
12 | { |
||
13 | private ChainWorkDirManager $chainWorkDirManager; |
||
14 | |||
15 | /** @var FileSystemInterface[] */ |
||
16 | private array $fileSystems; |
||
17 | |||
18 | public function __construct(ChainWorkDirManager $chainWorkDirManager) |
||
21 | } |
||
22 | |||
23 | public function get(ExecutionInterface $execution): FileSystemInterface |
||
30 | } |
||
31 | } |