You are here

public function TableSeparator::__construct 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::__construct()

Parameters

string $value:

array $options:

Overrides TableCell::__construct

File

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

Class

TableSeparator
Marks a row as being a separator.

Namespace

Symfony\Component\Console\Helper

Code

public function __construct(array $options = array()) {
  parent::__construct('', $options);
}