Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
39 | 1 | public function mkdir($dir, $mode = 0777, $deep = true) |
|
40 | { |
||
41 | 1 | $level = error_reporting(0); |
|
42 | 1 | $result = mkdir($dir, $mode, $deep); |
|
43 | 1 | error_reporting($level); |
|
44 | |||
45 | 1 | if ($result !== false) { |
|
46 | 1 | return; |
|
47 | } |
||
48 | |||
49 | 1 | $error = error_get_last(); |
|
50 | 1 | throw new Exception($error['message']); |
|
51 | } |
||
52 | } |
||
53 |