function TableStyle::setHorizontalBorderChars
Sets horizontal border characters.
<code> ╔═══════════════╤══════════════════════════╤══════════════════╗ 1 ISBN 2 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 ║ ╚═══════════════╧══════════════════════════╧══════════════════╝ </code>
Return value
$this
File
-
vendor/
symfony/ console/ Helper/ TableStyle.php, line 91
Class
- TableStyle
- Defines the styles for a Table.
Namespace
Symfony\Component\Console\HelperCode
public function setHorizontalBorderChars(string $outside, ?string $inside = null) : static {
$this->horizontalOutsideBorderChar = $outside;
$this->horizontalInsideBorderChar = $inside ?? $outside;
return $this;
}