1
0
Fork 0

Fix OutputFormatter creation with Symfony 4, fixes #6871

pull/6880/head
Jordi Boggiano 2017-12-07 09:21:26 +01:00 committed by GitHub
parent 578798c87c
commit ed20b3b4f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ class Factory
public static function createOutput()
{
$styles = self::createAdditionalStyles();
$formatter = new OutputFormatter(null, $styles);
$formatter = new OutputFormatter(false, $styles);
return new ConsoleOutput(ConsoleOutput::VERBOSITY_NORMAL, null, $formatter);
}