From 83d75d2415f53b5f43c68556f920f7924b2268e0 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Sat, 26 Feb 2022 23:13:18 +0100 Subject: [PATCH] fix cache clear task --- core/Cache/SymfonyCacheManager.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/core/Cache/SymfonyCacheManager.php b/core/Cache/SymfonyCacheManager.php index 5504be8..a368cd0 100644 --- a/core/Cache/SymfonyCacheManager.php +++ b/core/Cache/SymfonyCacheManager.php @@ -63,15 +63,6 @@ class SymfonyCacheManager $output = new BufferedOutput(); } - $input = new ArrayInput([ - 'command' => 'cache:clear', - '-e' => $this->kernel->getEnvironment(), - '--no-warmup' => null, - '--ansi' => null, - ]); - - $application->run($input, $output); - $input = new ArrayInput([ 'command' => 'cache:warmup', '-e' => $this->kernel->getEnvironment(),