@@ -60,8 +60,11 @@ |
||
| 60 | 60 | $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir, FilesystemIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST); |
| 61 | 61 | |
| 62 | 62 | foreach ($it as $file) { |
| 63 | - if ($file->isDir()) rmdir($file->getPathname()); |
|
| 64 | - else unlink($file->getPathname()); |
|
| 63 | + if ($file->isDir()) { |
|
| 64 | + rmdir($file->getPathname()); |
|
| 65 | + } else { |
|
| 66 | + unlink($file->getPathname()); |
|
| 67 | + } |
|
| 65 | 68 | } |
| 66 | 69 | |
| 67 | 70 | return rmdir($dir); |
@@ -57,9 +57,9 @@ |
||
| 57 | 57 | * @param bool $render |
| 58 | 58 | */ |
| 59 | 59 | public static function showExceptionInView(Template $view, |
| 60 | - \Exception $e, |
|
| 61 | - $replace = null, |
|
| 62 | - $render = true) |
|
| 60 | + \Exception $e, |
|
| 61 | + $replace = null, |
|
| 62 | + $render = true) |
|
| 63 | 63 | { |
| 64 | 64 | switch (get_class($e)) { |
| 65 | 65 | case UpdatedMasterPassException::class: |