From eabc5d8e9226448c3d37cc0b8e0ea8cf628e7c1a Mon Sep 17 00:00:00 2001 From: Christian Schmidt Date: Fri, 6 Feb 2015 17:58:23 +0100 Subject: [PATCH] =?UTF-8?q?=E2=80=9Cconsole=20help=E2=80=9D=20ignores=20--?= =?UTF-8?q?raw=20option?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Symfony/Component/Console/Command/HelpCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Console/Command/HelpCommand.php b/src/Symfony/Component/Console/Command/HelpCommand.php index d370da2709..4cf9362419 100644 --- a/src/Symfony/Component/Console/Command/HelpCommand.php +++ b/src/Symfony/Component/Console/Command/HelpCommand.php @@ -83,7 +83,7 @@ EOF $helper = new DescriptorHelper(); $helper->describe($output, $this->command, array( 'format' => $input->getOption('format'), - 'raw' => $input->getOption('raw'), + 'raw_text' => $input->getOption('raw'), )); $this->command = null;