We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 462af51 commit c699310Copy full SHA for c699310
src/Commands/MinifyApplicationCommand.php
@@ -86,7 +86,7 @@ protected function removeIgnoredFilesAndFolders(string $appPath): void
86
}
87
88
89
- private function deleteDirectoryRecursive(string $directory): void
+ private function deleteDirectoryRecursive(string $directory): bool
90
{
91
if (! file_exists($directory)) {
92
return true;
@@ -106,6 +106,6 @@ private function deleteDirectoryRecursive(string $directory): void
106
107
108
109
- rmdir($directory);
+ return rmdir($directory);
110
111
0 commit comments