N98\Magento\Command\Database\AbstractShowCommand::renderTable PHP Method

renderTable() protected method

protected renderTable ( array $header, array $rows )
$header array
$rows array
    protected function renderTable(array $header, array $rows)
    {
        /** @var \N98\Util\Console\Helper\TableHelper $t */
        $t = $this->getHelper('table');
        $t->setHeaders($header)->renderByFormat($this->_output, $rows, $this->_input->getOption('format'));
    }