Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 25b89d4

Browse files
committed
bug #16955 [FrameworkBundle] ContainerDebugCommand: pass the right object to the descriptors (xabbuh)
This PR was merged into the 2.8 branch. Discussion ---------- [FrameworkBundle] ContainerDebugCommand: pass the right object to the descriptors | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | c5067da#commitcomment-14884960 | License | MIT | Doc PR | Commits ------- 8cf0022 pass the right object to the descriptors
2 parents e829a88 + 8cf0022 commit 25b89d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/ContainerDebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
125125
$helper = new DescriptorHelper();
126126
$options['format'] = $input->getOption('format');
127127
$options['raw_text'] = $input->getOption('raw');
128-
$options['output'] = $output;
128+
$options['output'] = $io;
129129
$helper->describe($output, $object, $options);
130130

131131
if (!$input->getArgument('name') && $input->isInteractive()) {

0 commit comments

Comments
 (0)