Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function get(ExecutionInterface $execution): FileSystemInterface |
||
24 | { |
||
25 | if (!isset($this->fileSystems[$execution->getId()])) { |
||
26 | $this->fileSystems[$execution->getId()] = new LocalFileSystem($this->chainWorkDirManager->getLocalTmpWorkDir($execution)); |
||
27 | } |
||
28 | |||
29 | return $this->fileSystems[$execution->getId()]; |
||
30 | } |
||
31 | } |