8000 camelCase update · LunashaGit/laravel-nativephp@60295d9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 60295d9

Browse files
committed
camelCase update
1 parent 1bd5d55 commit 60295d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Commands/MinifyApplicationCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ protected function removeIgnoredFilesAndFolders(string $appPath): void
7474

7575
if (file_exists($fullPath)) {
7676
if (is_dir($fullPath)) {
77-
$this->delete_directory_recursive($fullPath);
77+
$this->deleteDirectoryRecursive($fullPath);
7878
} else {
7979
array_map('unlink', glob($fullPath));
8080
}
@@ -86,7 +86,7 @@ protected function removeIgnoredFilesAndFolders(string $appPath): void
8686
}
8787
}
8888

89-
private function delete_directory_recursive($dir)
89+
private function deleteDirectoryRecursive($dir)
9090
{
9191
if (! file_exists($dir)) {
9292
return true;
@@ -101,7 +101,7 @@ private function delete_directory_recursive($dir)
101101
continue;
102102
}
103103

104-
if (! $this->delete_directory_recursive($dir.'/'.$item)) {
104+
if (! $this->deleteDirectoryRecursive($dir.'/'.$item)) {
105105
return false;
106106
}
107107
}

0 commit comments

Comments
 (0)
0