| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 43 | public function createSpecificFileSystemHelper(OptionsManagerInterface $optionsManager, EntityFactory $entityFactory) |
|
| 27 | { |
||
| 28 | 43 | $tempFolder = $optionsManager->getOption(Options::TEMP_FOLDER); |
|
| 29 | 43 | $zipHelper = $this->createZipHelper($entityFactory); |
|
| 30 | |||
| 31 | 43 | return new FileSystemHelper($tempFolder, $zipHelper); |
|
| 32 | } |
||
| 33 | |||
| 59 |