mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-12 09:53:49 +09:00
Updates to vendors etc
This commit is contained in:
13
vendor/symfony/console/Helper/TableStyle.php
vendored
13
vendor/symfony/console/Helper/TableStyle.php
vendored
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user