class TableSeparator
Marks a row as being a separator.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- class \Symfony\Component\Console\Helper\TableCell
- class \Symfony\Component\Console\Helper\TableSeparator extends \Symfony\Component\Console\Helper\TableCell
Expanded class hierarchy of TableSeparator
2 files declare their use of TableSeparator
- BaseCommand.php in vendor/
composer/ composer/ src/ Composer/ Command/ BaseCommand.php - SymfonyStyle.php in vendor/
symfony/ console/ Style/ SymfonyStyle.php
File
-
vendor/
symfony/ console/ Helper/ TableSeparator.php, line 19
Namespace
Symfony\Component\Console\HelperView source
class TableSeparator extends TableCell {
public function __construct(array $options = []) {
parent::__construct('', $options);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
TableCell::$options | private | property | ||
TableCell::getColspan | public | function | Gets number of colspan. | |
TableCell::getRowspan | public | function | Gets number of rowspan. | |
TableCell::getStyle | public | function | ||
TableCell::__toString | public | function | Returns the cell value. | |
TableSeparator::__construct | public | function | Overrides TableCell::__construct |