@@ -31,7 +31,7 @@ |
||
31 | 31 | |
32 | 32 | public static function removeDir($path) |
33 | 33 | { |
34 | - $files = glob($path . '/*'); |
|
34 | + $files = glob($path.'/*'); |
|
35 | 35 | foreach ($files as $file) { |
36 | 36 | is_dir($file) ? Utils::removeDir($file) : unlink($file); |
37 | 37 | } |