Code Duplication    Length = 4-4 lines in 2 locations

src/PhpSpreadsheet/Writer/HTML.php 2 locations

@@ 880-883 (lines=4) @@
877
                    $this->columnWidths[$sheetIndex][$column] = $width;
878
                    $css['table.sheet' . $sheetIndex . ' col.col' . $column]['width'] = $width . 'pt';
879
880
                    if ($columnDimension->getVisible() === false) {
881
                        $css['table.sheet' . $sheetIndex . ' col.col' . $column]['visibility'] = 'collapse';
882
                        $css['table.sheet' . $sheetIndex . ' col.col' . $column]['*display'] = 'none'; // target IE6+7
883
                    }
884
                }
885
            }
886
@@ 917-920 (lines=4) @@
914
                    $pt_height = $rowDimension->getRowHeight();
915
                }
916
                $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['height'] = $pt_height . 'pt';
917
                if ($rowDimension->getVisible() === false) {
918
                    $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['display'] = 'none';
919
                    $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['visibility'] = 'hidden';
920
                }
921
            }
922
        }
923