diff --git a/Command/DumpCommand.php b/Command/DumpCommand.php index a4ab80d..a25628e 100644 --- a/Command/DumpCommand.php +++ b/Command/DumpCommand.php @@ -72,7 +72,7 @@ class DumpCommand extends ContainerAwareCommand if ('json' === $format) { $output->writeln(json_encode($formattedDoc)); } else { - $output->writeln($formattedDoc); + $output->writeln($formattedDoc, OutputInterface::OUTPUT_RAW); } } }