Skip to content

Commit 23add72

Browse files
author
Rokas Mikalkėnas
committed
[FrameworkBundle] Fix services usages output for text descriptor
1 parent 8fc6a78 commit 23add72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)