diff --git a/Command/DumpCommand.php b/Command/DumpCommand.php index a4ab80d67..a25628ec7 100644 --- a/Command/DumpCommand.php +++ b/Command/DumpCommand.php @@ -72,7 +72,7 @@ protected function execute(InputInterface $input, OutputInterface $output) if ('json' === $format) { $output->writeln(json_encode($formattedDoc)); } else { - $output->writeln($formattedDoc); + $output->writeln($formattedDoc, OutputInterface::OUTPUT_RAW); } } }