Exemplo n.º 1
0
 /**
  * @param array $row
  * @param Style $style
  */
 public function addRow(array $row, Style $style = null)
 {
     if (!empty($row)) {
         $style = $style instanceof Style ? $style : $this->styler->getDefaultStyle();
         $this->styler->addStyle($style);
         $this->sheetFile->fwrite($this->sheet->addRow($row, $style));
     }
 }