You are here

public function TableStyle::setCellRowFormat in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Helper/TableStyle.php \Symfony\Component\Console\Helper\TableStyle::setCellRowFormat()

Sets row cell format.

Parameters

string $cellRowFormat:

Return value

TableStyle

File

vendor/symfony/console/Helper/TableStyle.php, line 163

Class

TableStyle
Defines the styles for a Table.

Namespace

Symfony\Component\Console\Helper

Code

public function setCellRowFormat($cellRowFormat) {
  $this->cellRowFormat = $cellRowFormat;
  return $this;
}