Skip to content

Commit ca700c0

Browse files
Merge branch '6.0' into 6.1
* 6.0: [VarExporter] fix tests on Windows [GHA] Fix psalm job Fix CS [PropertyInfo] strip only leading `\` when unknown docType [RateLimiter] Fix rate serialization for long intervals (monthly and yearly) 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 fix: stringify from address for ses+api transport [Mailer] Use recipients in sendmail transport [Serializer] Fix nested deserialization_path computation when there is no metadata for the attribute [Asset] Update the error message when assets are not built
2 parents b113275 + 99cade3 commit ca700c0

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
@@ -782,9 +782,9 @@ private static function initStyles(): array
782782
$compact = new TableStyle();
783783
$compact
784784
->setHorizontalBorderChars('')
785-
->setVerticalBorderChars(' ')
785+
->setVerticalBorderChars('')
786786
->setDefaultCrossingChar('')
787-
->setCellRowContentFormat('%s')
787+
->setCellRowContentFormat('%s ')
788788
;
789789

790790
$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)