public function TableHelper::setCellRowFormat in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Helper/TableHelper.php \Symfony\Component\Console\Helper\TableHelper::setCellRowFormat()
Sets row cell format.
Parameters
string $cellRowFormat:
Return value
File
- vendor/
symfony/ console/ Helper/ TableHelper.php, line 189
Class
- TableHelper
- Provides helpers to display table output.
Namespace
Symfony\Component\Console\HelperCode
public function setCellRowFormat($cellRowFormat) {
$this->table
->getStyle()
->setCellHeaderFormat($cellRowFormat);
return $this;
}