Webmozart\Console\UI\Component\Table::__construct PHP Метод

__construct() публичный Метод

Creates a new table.
public __construct ( TableStyle $style = null )
$style Webmozart\Console\UI\Style\TableStyle The rendering style. By default, the table is rendered with the style {@link TableStyle::asciiBorder()}.
    public function __construct(TableStyle $style = null)
    {
        $this->style = $style ?: TableStyle::asciiBorder();
    }