Conditions | 4 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 4.074 |
Changes | 0 |
1 | <?php |
||
24 | 10 | public function __construct(string $path) |
|
25 | { |
||
26 | 10 | $this->generatedPath = $path; |
|
27 | if ( |
||
28 | 10 | !is_writable($this->generatedPath) |
|
29 | 10 | && !mkdir($this->generatedPath, 0777, true) |
|
30 | 10 | && !is_dir($this->generatedPath) |
|
31 | ) { |
||
32 | throw new GenerateDirectoryNotWriteable($this->generatedPath); |
||
33 | } |
||
54 |