You are here

public function Table::setRows in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Helper/Table.php \Symfony\Component\Console\Helper\Table::setRows()

File

vendor/symfony/console/Helper/Table.php, line 153

Class

Table
Provides helpers to display a table.

Namespace

Symfony\Component\Console\Helper

Code

public function setRows(array $rows) {
  $this->rows = array();
  return $this
    ->addRows($rows);
}