You are here

public function SymfonyStyle::note in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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\Style

Code

public function note($message) {
  $this
    ->block($message, 'NOTE', 'fg=yellow', ' ! ');
}