Total Complexity | 8 |
Total Lines | 62 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
5 | class Dir |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @param string $path |
||
10 | * |
||
11 | * @return bool |
||
12 | */ |
||
13 | 1 | public static function make($path) |
|
16 | } |
||
17 | |||
18 | /** |
||
19 | * @param string $path |
||
20 | * |
||
21 | * @return bool |
||
22 | */ |
||
23 | 2 | public static function isDir($path) |
|
26 | } |
||
27 | |||
28 | /** |
||
29 | * @param string $path |
||
30 | * @param bool $recursive |
||
31 | * |
||
32 | * @return bool |
||
33 | */ |
||
34 | 1 | public static function remove($path, $recursive = false) |
|
70 |