diff --git a/framework/console/controllers/CacheController.php b/framework/console/controllers/CacheController.php index 2a0a487d78..782a99c6fc 100644 --- a/framework/console/controllers/CacheController.php +++ b/framework/console/controllers/CacheController.php @@ -195,7 +195,7 @@ class CacheController extends Controller $this->stdout("The following cache components were NOT found:\n\n", Console::FG_RED); foreach ($cachesNames as $name) { - $this->stdout("\t * $name \n", Console::FG_GREEN); + $this->stdout("\t* $name \n", Console::FG_GREEN); } $this->stdout("\n"); @@ -232,7 +232,7 @@ class CacheController extends Controller $this->stdout("The following cache components will be flushed:\n\n", Console::FG_YELLOW); foreach ($cachesNames as $name) { - $this->stdout("\t * $name \n", Console::FG_GREEN); + $this->stdout("\t* $name \n", Console::FG_GREEN); } return $this->confirm("\nFlush above cache components?");