public function Table::addRows in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Helper/Table.php \Symfony\Component\Console\Helper\Table::addRows()
1 call to Table::addRows()
- Table::setRows in vendor/
symfony/ console/ Helper/ Table.php
File
- vendor/
symfony/ console/ Helper/ Table.php, line 160
Class
- Table
- Provides helpers to display a table.
Namespace
Symfony\Component\Console\HelperCode
public function addRows(array $rows) {
foreach ($rows as $row) {
$this
->addRow($row);
}
return $this;
}