[Console] Make "warning" in SymfonyStyle use orange color

This commit is contained in:
Tomáš Votruba 2019-01-29 23:35:02 +01:00 committed by GitHub
parent d18aa4d11b
commit 947aaee22c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class SymfonyStyle extends OutputStyle
*/
public function warning($message)
{
$this->block($message, 'WARNING', 'fg=white;bg=red', ' ', true);
$this->block($message, 'WARNING', 'fg=black;bg=yellow', ' ', true);
}
/**