8000 [Console] Fix compact table style to avoid outputting a leading space · symfony/symfony@2eb8ced · GitHub
[go: up one dir, main page]

Skip to content

Commit 2eb8ced

Browse files
authored
[Console] Fix compact table style to avoid outputting a leading space
1 parent dcc1ffe commit 2eb8ced

File tree

1 file changed

+2
-2
lines changed
  • src/Symfony/Component/Console/Helper

1 file changed

+2
-2
lines changed

src/Symfony/Component/Console/Helper/Table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -804,9 +804,9 @@ private static function initStyles(): array
804804
$compact = new TableStyle();
805805
$compact
806806
->setHorizontalBorderChars('')
807-
->setVerticalBorderChars(' ')
807+
->setVerticalBorderChars('')
808808
->setDefaultCrossingChar('')
809-
->setCellRowContentFormat('%s')
809+
->setCellRowContentFormat('%s ')
810810
;
811811

812812
$styleGuide = new TableStyle();

0 commit comments

Comments
 (0)
0