Box\Spout\Writer\AbstractWriter::setRowStyle PHP Method

setRowStyle() private method

Sets the style to be applied to the next written rows until it is changed or reset.
private setRowStyle ( Style $style ) : void
$style Box\Spout\Writer\Style\Style
return void
    private function setRowStyle($style)
    {
        // Merge given style with the default one to inherit custom properties
        $this->rowStyle = $style->mergeWith($this->defaultRowStyle);
    }