public function Table::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 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\HelperCode
public function __construct(OutputInterface $output) {
$this->output = $output;
if (!self::$styles) {
self::$styles = self::initStyles();
}
$this
->setStyle('default');
}