Webmozart\Console\UI\Style\TableStyle::setHeaderCellFormat PHP Method

setHeaderCellFormat() public method

Sets the format string for rendering the header cells.
public setHeaderCellFormat ( string $format ) : static
$format string The format string. The string should contain the substring "%s" where the cell content is inserted.
return static The current instance.
    public function setHeaderCellFormat($format)
    {
        $this->headerCellFormat = $format;
        return $this;
    }