File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ protected function removeIgnoredFilesAndFolders(string $appPath): void
74
74
75
75
if (file_exists ($ fullPath )) {
76
76
if (is_dir ($ fullPath )) {
77
- $ this ->delete_directory_recursive ($ fullPath );
77
+ $ this ->deleteDirectoryRecursive ($ fullPath );
78
78
} else {
79
79
array_map ('unlink ' , glob ($ fullPath ));
80
80
}
@@ -86,7 +86,7 @@ protected function removeIgnoredFilesAndFolders(string $appPath): void
86
86
}
87
87
}
88
88
89
- private function delete_directory_recursive ($ dir )
89
+ private function deleteDirectoryRecursive ($ dir )
90
90
{
91
91
if (! file_exists ($ dir )) {
92
92
return true ;
@@ -101,7 +101,7 @@ private function delete_directory_recursive($dir)
101
101
continue ;
102
102
}
103
103
104
- if (! $ this ->delete_directory_recursive ($ dir .'/ ' .$ item )) {
104
+ if (! $ this ->deleteDirectoryRecursive ($ dir .'/ ' .$ item )) {
105
105
return false ;
106
106
}
107
107
}
You can’t perform that action at this time.
0 commit comments