You are here

class TableSeparator in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Helper/TableSeparator.php \Symfony\Component\Console\Helper\TableSeparator

Marks a row as being a separator.

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of TableSeparator

1 file declares its use of TableSeparator
TableTest.php in vendor/symfony/console/Tests/Helper/TableTest.php

File

vendor/symfony/console/Helper/TableSeparator.php, line 19

Namespace

Symfony\Component\Console\Helper
View source
class TableSeparator extends TableCell {

  /**
   * @param string $value
   * @param array  $options
   */
  public function __construct(array $options = array()) {
    parent::__construct('', $options);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
TableCell::$options private property
TableCell::$value private property
TableCell::getColspan public function Gets number of colspan.
TableCell::getRowspan public function Gets number of rowspan.
TableCell::__toString public function Returns the cell value.
TableSeparator::__construct public function Overrides TableCell::__construct