Conditions | 3 |
Paths | 2 |
Total Lines | 5 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
14 | 4 | protected function doCreate(): void |
|
15 | { |
||
16 | 4 | if (!mkdir($this->path, $this->createModeOctal, true) && !is_dir($this->path)) { |
|
17 | // @codeCoverageIgnoreStart |
||
18 | throw new \RuntimeException(sprintf('Directory "%s" was not created', $this->path)); |
||
19 | // @codeCoverageIgnoreEnd |
||
28 |