public function SymfonyStyle::warning in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Style/SymfonyStyle.php \Symfony\Component\Console\Style\SymfonyStyle::warning()
Formats an warning result bar.
Parameters
string|array $message:
Overrides StyleInterface::warning
File
- vendor/
symfony/ console/ Style/ SymfonyStyle.php, line 181
Class
- SymfonyStyle
- Output decorator helpers for the Symfony Style Guide.
Namespace
Symfony\Component\Console\StyleCode
public function warning($message) {
$this
->block($message, 'WARNING', 'fg=white;bg=red', ' ', true);
}