Skip to content

Commit 0a4f498

Browse files
Merge branch '4.4' into 5.4
* 4.4: [VarExporter] fix tests on Windows [GHA] Fix psalm job Fix CS [PropertyInfo] strip only leading `\` when unknown docType ignoring exception from sem_get in SemaphoreStore Lock component, preventing of error: identifier removed [Console] Fix compact table style to avoid outputting a leading space [Mailer] Use recipients in sendmail transport [Asset] Update the error message when assets are not built
2 parents d8111ac + 74236fc commit 0a4f498

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Helper/Table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,9 +844,9 @@ private static function initStyles(): array
844844
$compact = new TableStyle();
845845
$compact
846846
->setHorizontalBorderChars('')
847-
->setVerticalBorderChars(' ')
847+
->setVerticalBorderChars('')
848848
->setDefaultCrossingChar('')
849-
->setCellRowContentFormat('%s')
849+
->setCellRowContentFormat('%s ')
850850
;
851851

852852
$styleGuide = new TableStyle();

Tests/Helper/TableTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@ public function renderProvider()
119119
$books,
120120
'compact',
121121
<<<'TABLE'
122-
ISBN Title Author
123-
99921-58-10-7 Divine Comedy Dante Alighieri
124-
9971-5-0210-0 A Tale of Two Cities Charles Dickens
125-
960-425-059-0 The Lord of the Rings J. R. R. Tolkien
126-
80-902734-1-6 And Then There Were None Agatha Christie
122+
ISBN Title Author
123+
99921-58-10-7 Divine Comedy Dante Alighieri
124+
9971-5-0210-0 A Tale of Two Cities Charles Dickens
125+
960-425-059-0 The Lord of the Rings J. R. R. Tolkien
126+
80-902734-1-6 And Then There Were None Agatha Christie
127127

128128
TABLE
129129
],

0 commit comments

Comments
 (0)