yii\console\controllers\CacheController::notifyNotFoundCaches PHP Method

notifyNotFoundCaches() private method

Notifies user that given cache components were not found in the system.
private notifyNotFoundCaches ( array $cachesNames )
$cachesNames array
    private function notifyNotFoundCaches($cachesNames)
    {
        $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("\n");
    }