Преглед изворни кода

Fix OutputFormatter creation with Symfony 4, fixes #6871

Jordi Boggiano пре 7 година
родитељ
комит
ed20b3b4f6
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/Composer/Factory.php

+ 1 - 1
src/Composer/Factory.php

@@ -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);
     }