Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | 28 | public function getTempDirForThisExecution() |
|
31 | { |
||
32 | 28 | $dir = self::getTempBaseDir() . DIRECTORY_SEPARATOR . $this->timestamp; |
|
33 | 28 | self::mkdirIfNotExists($dir); |
|
34 | 28 | self::mkdirIfNotExists($dir . DIRECTORY_SEPARATOR . 'logs'); |
|
35 | 28 | self::mkdirIfNotExists($dir . DIRECTORY_SEPARATOR . 'coverage'); |
|
36 | |||
37 | 28 | return $dir; |
|
38 | } |
||
39 | |||
67 |