Passed
Push — master ( 27b4fc...435648 )
by Koldo
13:38
created
src/Application/Command/ClearConfigCache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,12 +28,12 @@
 block discarded – undo
28 28
     protected function execute(InputInterface $input, OutputInterface $output): ?int
29 29
     {
30 30
         foreach (['config_cache_path', 'cli_config_cache_path'] as $key) {
31
-            if (! isset($this->config[$key])) {
31
+            if (!isset($this->config[$key])) {
32 32
                 $output->writeln("<comment>No configuration cache path found</comment>");
33 33
                 continue;
34 34
             }
35 35
 
36
-            if (! file_exists($this->config[$key])) {
36
+            if (!file_exists($this->config[$key])) {
37 37
                 $output->writeln(sprintf(
38 38
                     "<error>Configured config cache file '%s' not found</error>",
39 39
                     $this->config[$key]
Please login to merge, or discard this patch.