Skip to content

Commit c803fa5

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 | symfony/symfony@c5067da#commitcomment-14884960 | License | MIT | Doc PR | Commits ------- 8cf0022 pass the right object to the descriptors
2 parents 2b84fb2 + 559cdf3 commit c803fa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)