bug #16298 Changed one console output style to avoid visual issues (javiereguiluz)

This PR was merged into the 2.7 branch.

Discussion
----------

Changed one console output style to avoid visual issues

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

Read [this comment](https://github.com/symfony/symfony/issues/16257#issuecomment-149205104) for the rationale behind this change.

Commits
-------

3c4e458 Changed one console output style to avoid visual issues
This commit is contained in:
Tobias Schultze 2015-10-22 22:26:31 +02:00
commit 8403028a16

View File

@ -164,7 +164,7 @@ class SymfonyStyle extends OutputStyle
*/
public function success($message)
{
$this->block($message, 'OK', 'fg=white;bg=green', ' ', true);
$this->block($message, 'OK', 'fg=black;bg=green', ' ', true);
}
/**