| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 7 | $configurator->addConfig(__DIR__ . '/../../config/config.neon'); |
|
| 24 | |||
| 25 | 7 | return $configurator->createContainer(); |
|
| 26 | 7 | } |
|
| 27 | 7 | ||
| 28 | 7 | private function createAndReturnTempDir() : string |
|
| 29 | { |
||
| 30 | 7 | $tempDir = sys_get_temp_dir() . '/php7_sculpin'; |
|
| 31 | FileSystem::delete($tempDir); |
||
| 32 | FileSystem::createDir($tempDir); |
||
| 37 |