Platformsh\Cli\Console\AdaptiveTable::adaptRows PHP Method

adaptRows() protected method

Adapt rows based on the terminal width.
protected adaptRows ( )
    protected function adaptRows()
    {
        // Go through all headers and rows, wrapping their cells until each
        // column meets the max column width.
        $maxColumnWidths = $this->getMaxColumnWidths();
        $this->setRows($this->adaptCells($this->rowsCopy, $maxColumnWidths));
    }