/**
  * Warmup essential caches such as class and core caches
  */
 public function warmupCommand()
 {
     if ($this->cacheService->warmupEssentialCaches()) {
         $this->outputLine('Warmed up the following caches: classes, package manager, tca, ext_tables, ext_localconf');
     } else {
         $this->outputLine('<info>Warmup skipped due to lack of classes cache</info>');
     }
 }
 /**
  * Warmup essential caches such as class and core caches
  */
 public function warmupCommand()
 {
     $this->cacheService->warmupEssentialCaches();
     $this->outputLine('Warmed up the following caches: classes, package manager, tca, ext_tables, ext_localconf');
 }