-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
/**
* Formats a command comment as single line.
*
* @param string $message
*/
public function cautionLine(string $message): void
{
- $this->writeln($this->createLine($message, 'caution', 'caution', ' ! '));
+ $this->writeln($this->createLine($message, 'caution', ConsoleStyles::CAUTION, ' ! '));
}