8000 [FrameworkBundle] Fix services usages output for text descriptor · symfony/symfony@71baeab · GitHub
[go: up one dir, main page]

Skip to content

Commit 71baeab

Browse files
author
Rokas Mikalkėnas
committed
[FrameworkBundle] Fix services usages output for text descriptor
1 parent 2c980d7 commit 71baeab

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
@@ -361,7 +361,7 @@ protected function describeContainerDefinition(Definition $definition, array $op
361361
}
362362

363363
$inEdges = null !== $builder && isset($options['id']) ? $this->getServiceEdges($builder, $options['id']) : [];
364-
$tableRows[] = ['Usages', $inEdges ? implode(', ', $inEdges) : 'none'];
364+
$tableRows[] = ['Usages', $inEdges ? implode(\PHP_EOL, $inEdges) : 'none'];
365365

366366
$options['output']->table($tableHeaders, $tableRows);
367367
}

0 commit comments

Comments
 (0)
0