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