Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Commit

Permalink
Remove error from helper.php
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongerig committed Aug 21, 2017
1 parent e526f3d commit aa8d64a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function deleteDir($dirPath)
$files = glob($dirPath . '*', GLOB_MARK);
foreach ($files as $file) {
if (is_dir($file)) {
self::deleteDir($file);
deleteDir($file);
} else {
unlink($file);
}
Expand Down

0 comments on commit aa8d64a

Please sign in to comment.