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 faa91f4 commit 9b8dc6eCopy full SHA for 9b8dc6e
app/Commands/Internal/BuildApplicationBinaryCommand.php
@@ -63,15 +63,17 @@ protected function resetBuildEnvironment(): void
63
rename(__DIR__.'/../../../box.json.bak', __DIR__.'/../../../box.json');
64
}
65
66
- protected function clearCachedConfiguration(): void
+ protected function clearCachedConfiguration(bool $silent = false): void
67
{
68
$configPath = $this->laravel->getCachedConfigPath();
69
70
if (File::exists($configPath)) {
71
File::delete($configPath);
72
73
74
- $this->components->info('Configuration cache cleared successfully.');
+ if (! $silent) {
75
+ $this->components->info('Configuration cache cleared successfully.');
76
+ }
77
78
79
protected function cacheConfiguration(): void
0 commit comments