Updates to vendors etc

This commit is contained in:
Chris Hunt
2025-07-11 15:57:48 +01:00
parent d972cbcd0a
commit 8fb6438254
8043 changed files with 248005 additions and 189479 deletions

View File

@@ -46,6 +46,7 @@ class TableStyle
private string $cellRowFormat = '%s';
private string $cellRowContentFormat = ' %s ';
private string $borderFormat = '%s';
private bool $displayOutsideBorder = true;
private int $padType = \STR_PAD_RIGHT;
/**
@@ -359,4 +360,16 @@ class TableStyle
return $this;
}
public function setDisplayOutsideBorder($displayOutSideBorder): static
{
$this->displayOutsideBorder = $displayOutSideBorder;
return $this;
}
public function displayOutsideBorder(): bool
{
return $this->displayOutsideBorder;
}
}