Skip to content

Commit

Permalink
minor #30031 [Console] Make "warning" in SymfonyStyle use orange colo…
Browse files Browse the repository at this point in the history
…r (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
-------

947aaee [Console] Make "warning" in SymfonyStyle use orange color
  • Loading branch information
fabpot committed Jan 30, 2019
2 parents d18aa4d + 947aaee commit 0c6fd86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Component/Console/Style/SymfonyStyle.php
Expand Up @@ -154,7 +154,7 @@ public function error($message)
*/
public function warning($message)
{
$this->block($message, 'WARNING', 'fg=white;bg=red', ' ', true);
$this->block($message, 'WARNING', 'fg=black;bg=yellow', ' ', true);
}

/**
Expand Down

0 comments on commit 0c6fd86

Please sign in to comment.