Code style changes only

This commit is contained in:
Benny Gårdbo-Pedersen 2019-09-19 14:10:40 +02:00
parent ce7248c015
commit d2450f77c8

View File

@ -160,7 +160,7 @@ EOD;
$rowXML = '<row r="' . $rowIndex . '" spans="1:' . $numCells . '">';
$cells = $row->getCells();
for($cell_index=0;$cell_index<$numCells;$cell_index++) {
for ($cell_index=0; $cell_index<$numCells; $cell_index++) {
if(isset($cells[$cell_index])) {
$rowXML .= $this->applyStyleAndGetCellXML($cells[$cell_index], $rowStyle, $rowIndex, $cell_index);
}