Skip to content

Commit

Permalink
Merge branch '4.4' into 5.4
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
nicolas-grekas committed Mar 18, 2022
2 parents d8111ac + 74236fc commit 0a4f498
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Helper/Table.php
Expand Up @@ -844,9 +844,9 @@ private static function initStyles(): array
$compact = new TableStyle();
$compact
->setHorizontalBorderChars('')
->setVerticalBorderChars(' ')
->setVerticalBorderChars('')
->setDefaultCrossingChar('')
->setCellRowContentFormat('%s')
->setCellRowContentFormat('%s ')
;

$styleGuide = new TableStyle();
Expand Down
10 changes: 5 additions & 5 deletions Tests/Helper/TableTest.php
Expand Up @@ -119,11 +119,11 @@ public function renderProvider()
$books,
'compact',
<<<'TABLE'
ISBN Title Author
99921-58-10-7 Divine Comedy Dante Alighieri
9971-5-0210-0 A Tale of Two Cities Charles Dickens
960-425-059-0 The Lord of the Rings J. R. R. Tolkien
80-902734-1-6 And Then There Were None Agatha Christie
ISBN Title Author
99921-58-10-7 Divine Comedy Dante Alighieri
9971-5-0210-0 A Tale of Two Cities Charles Dickens
960-425-059-0 The Lord of the Rings J. R. R. Tolkien
80-902734-1-6 And Then There Were None Agatha Christie
TABLE
],
Expand Down

0 comments on commit 0a4f498

Please sign in to comment.