| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 1 | public function write(string $content): void |
|
| 24 | { |
||
| 25 | 1 | $fullName = rtrim($this->baseDir, '/') . '/' . $this->fileNameProvider->getFileName($content); |
|
| 26 | |||
| 27 | 1 | $dir = dirname($fullName); |
|
| 28 | |||
| 29 | 1 | if (!file_exists($dir)) { |
|
| 30 | 1 | mkdir($dir, 0755, true); |
|
| 31 | } |
||
| 32 | 1 | file_put_contents($fullName, $content); |
|
| 33 | 1 | } |
|
| 35 |