minor #30031 [Console] Make "warning" in SymfonyStyle use orange color (TomasVotruba)

This PR was merged into the 4.3-dev branch.

Discussion
----------

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

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | no
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

Re-send of #29268

Closes #29268

Commits
-------

947aaee22c [Console] Make "warning" in SymfonyStyle use orange color
This commit is contained in:
Fabien Potencier 2019-01-30 07:49:09 +01:00
commit 0c6fd86536
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);
}
/**