From 9587d118a45d8cde193a7e8abed939d16f363764 Mon Sep 17 00:00:00 2001 From: Richard Dern Date: Wed, 15 May 2024 15:33:11 +0200 Subject: [PATCH] Clear cache silently --- app/Console/Commands/Bundle/Render.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Bundle/Render.php b/app/Console/Commands/Bundle/Render.php index 75065c7..fa6d1fa 100644 --- a/app/Console/Commands/Bundle/Render.php +++ b/app/Console/Commands/Bundle/Render.php @@ -141,7 +141,7 @@ private function clearCache(): self $this->output->write('Clearing cache... '); if (!$this->option('dry-run')) { - $this->call('cache:clear', ['--quiet']); + $this->callSilently('cache:clear'); } $this->info('OK');