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 | 1 | private function getAbsoluteProfilerFilename(): string |
|
30 | { |
||
31 | 1 | if (!is_dir($this->profilerDir) |
|
32 | 1 | && !mkdir($concurrentDirectory = $this->profilerDir, 0777, true) |
|
33 | 1 | && !is_dir($concurrentDirectory) |
|
34 | ) { |
||
35 | throw new RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory)); |
||
36 | } |
||
37 | |||
38 | 1 | return $this->profilerDir . DIRECTORY_SEPARATOR . $this->getProfilerFilename(); |
|
39 | } |
||
41 |