Skip to content

Commit f8543f4

Browse files
committed
[FrameworkBundle] Revert changed console output for Iterator
1 parent 6c4d190 commit f8543f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Console/Descriptor/TextDescriptor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ protected function describeContainerDefinition(Definition $definition, array $op
343343
if ($argument instanceof TaggedIteratorArgument) {
344344
$argumentsInformation[] = sprintf('Tagged Iterator for "%s"%s', $argument->getTag(), $options['is_debug'] ? '': sprintf(' (%d element(s))', \count($argument->getValues())));
345345
} else {
346-
$argumentsInformation[] = sprintf('Iterator%s', $options['is_debug'] ? '' : sprintf(' (%d element(s))', \count($argument->getValues())));
346+
$argumentsInformation[] = sprintf('Iterator (%d element(s))', \count($argument->getValues()));
347347
}
348348
} elseif ($argument instanceof Definition) {
349349
$argumentsInformation[] = 'Inlined Service';

0 commit comments

Comments
 (0)