You are here

public function Table::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Helper/Table.php \Symfony\Component\Console\Helper\Table::__construct()

File

vendor/symfony/console/Helper/Table.php, line 65

Class

Table
Provides helpers to display a table.

Namespace

Symfony\Component\Console\Helper

Code

public function __construct(OutputInterface $output) {
  $this->output = $output;
  if (!self::$styles) {
    self::$styles = self::initStyles();
  }
  $this
    ->setStyle('default');
}