| Conditions | 4 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 4.074 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 2 | private function getAbsoluteCacheFilename(): string |
|
| 30 | { |
||
| 31 | 2 | if (!is_dir($this->cacheDir) |
|
| 32 | 2 | && !mkdir($concurrentDirectory = $this->cacheDir, 0777, true) |
|
| 33 | 2 | && !is_dir($concurrentDirectory) |
|
| 34 | ) { |
||
| 35 | throw new RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory)); |
||
| 36 | } |
||
| 37 | |||
| 38 | 2 | return $this->cacheDir . '/' . $this->getCacheFilename(); |
|
| 39 | } |
||
| 41 |