@@ -29,10 +29,10 @@ discard block |
||
| 29 | 29 | */ |
| 30 | 30 | public function getTempDirForThisExecution() |
| 31 | 31 | { |
| 32 | - $dir = self::getTempBaseDir() . DIRECTORY_SEPARATOR . $this->timestamp; |
|
| 32 | + $dir = self::getTempBaseDir().DIRECTORY_SEPARATOR.$this->timestamp; |
|
| 33 | 33 | self::mkdirIfNotExists($dir); |
| 34 | - self::mkdirIfNotExists($dir . DIRECTORY_SEPARATOR . 'logs'); |
|
| 35 | - self::mkdirIfNotExists($dir . DIRECTORY_SEPARATOR . 'coverage'); |
|
| 34 | + self::mkdirIfNotExists($dir.DIRECTORY_SEPARATOR.'logs'); |
|
| 35 | + self::mkdirIfNotExists($dir.DIRECTORY_SEPARATOR.'coverage'); |
|
| 36 | 36 | |
| 37 | 37 | return $dir; |
| 38 | 38 | } |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | { |
| 45 | 45 | foreach (self::$tempDirs as $directory) { |
| 46 | 46 | if (file_exists($directory)) { |
| 47 | - $baseDir = $directory . DIRECTORY_SEPARATOR . 'paraunit'; |
|
| 47 | + $baseDir = $directory.DIRECTORY_SEPARATOR.'paraunit'; |
|
| 48 | 48 | self::mkdirIfNotExists($baseDir); |
| 49 | 49 | |
| 50 | 50 | return $baseDir; |
@@ -30,6 +30,6 @@ |
||
| 30 | 30 | |
| 31 | 31 | public function generateFromUniqueId($uniqueId) |
| 32 | 32 | { |
| 33 | - return $this->tempDirectory->getTempDirForThisExecution() . '/logs/' . $uniqueId . '.json.log'; |
|
| 33 | + return $this->tempDirectory->getTempDirForThisExecution().'/logs/'.$uniqueId.'.json.log'; |
|
| 34 | 34 | } |
| 35 | 35 | } |