public function SymfonyStyle::note in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Style/SymfonyStyle.php \Symfony\Component\Console\Style\SymfonyStyle::note()
Formats a note admonition.
Parameters
string|array $message:
Overrides StyleInterface::note
File
- vendor/
symfony/ console/ Style/ SymfonyStyle.php, line 189
Class
- SymfonyStyle
- Output decorator helpers for the Symfony Style Guide.
Namespace
Symfony\Component\Console\StyleCode
public function note($message) {
$this
->block($message, 'NOTE', 'fg=yellow', ' ! ');
}