Commit aef8fdff by Carsten Brandt

fixed indentation in Cache Controller

parent 681a7739
...@@ -195,7 +195,7 @@ class CacheController extends Controller ...@@ -195,7 +195,7 @@ class CacheController extends Controller
$this->stdout("The following cache components were NOT found:\n\n", Console::FG_RED); $this->stdout("The following cache components were NOT found:\n\n", Console::FG_RED);
foreach ($cachesNames as $name) { foreach ($cachesNames as $name) {
$this->stdout("\t * $name \n", Console::FG_GREEN); $this->stdout("\t* $name \n", Console::FG_GREEN);
} }
$this->stdout("\n"); $this->stdout("\n");
...@@ -232,7 +232,7 @@ class CacheController extends Controller ...@@ -232,7 +232,7 @@ class CacheController extends Controller
$this->stdout("The following cache components will be flushed:\n\n", Console::FG_YELLOW); $this->stdout("The following cache components will be flushed:\n\n", Console::FG_YELLOW);
foreach ($cachesNames as $name) { 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?"); return $this->confirm("\nFlush above cache components?");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment