fix double variable assignment in ContainerDebugCommand

This commit is contained in:
Vitaliy Zakharov 2013-05-18 00:12:23 +06:00 committed by Fabien Potencier
parent 88b06d0dd5
commit 70c0424f69

View File

@ -128,7 +128,7 @@ EOF
// sort so that it reads like an index of services // sort so that it reads like an index of services
asort($serviceIds); asort($serviceIds);
$name = $name = $input->getArgument('name'); $name = $input->getArgument('name');
if ($name) { if ($name) {
$this->outputService($output, $name); $this->outputService($output, $name);
} else { } else {