private function Table::getColumnSeparatorWidth in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Helper/Table.php \Symfony\Component\Console\Helper\Table::getColumnSeparatorWidth()
Gets column width.
Parameters
int $column:
Return value
int
1 call to Table::getColumnSeparatorWidth()
- Table::renderCell in vendor/
symfony/ console/ Helper/ Table.php - Renders table cell with padding.
File
- vendor/
symfony/ console/ Helper/ Table.php, line 536
Class
- Table
- Provides helpers to display a table.
Namespace
Symfony\Component\Console\HelperCode
private function getColumnSeparatorWidth() {
return strlen(sprintf($this->style
->getBorderFormat(), $this->style
->getVerticalBorderChar()));
}