Skip to content

Commit afb6e75

Browse files
committed
Added return type
1 parent 9a6733d commit afb6e75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/MinifyApplicationCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ protected function removeIgnoredFilesAndFolders(string $appPath): void
8686
}
8787
}
8888

89-
private function deleteDirectoryRecursive(string $directory)
89+
private function deleteDirectoryRecursive(string $directory): void
9090
{
9191
if (! file_exists($directory)) {
9292
return true;
@@ -106,6 +106,6 @@ private function deleteDirectoryRecursive(string $directory)
106106
}
107107
}
108108

109-
return rmdir($directory);
109+
rmdir($directory);
110110
}
111111
}

0 commit comments

Comments
 (0)