Neos\Flow\Cli\ConsoleOutput::outputTable PHP Method

outputTable() public method

Renders a table like output of the given $rows
public outputTable ( array $rows, array $headers = null )
$rows array
$headers array
    public function outputTable($rows, $headers = null)
    {
        $tableHelper = $this->getTableHelper();
        if ($headers !== null) {
            $tableHelper->setHeaders($headers);
        }
        $tableHelper->setRows($rows);
        $tableHelper->render($this->output);
    }