Code Duplication    Length = 4-4 lines in 2 locations

src/PhpSpreadsheet/Writer/Html.php 2 locations

@@ 900-903 (lines=4) @@
897
                    $this->columnWidths[$sheetIndex][$column] = $width;
898
                    $css['table.sheet' . $sheetIndex . ' col.col' . $column]['width'] = $width . 'pt';
899
900
                    if ($columnDimension->getVisible() === false) {
901
                        $css['table.sheet' . $sheetIndex . ' col.col' . $column]['visibility'] = 'collapse';
902
                        $css['table.sheet' . $sheetIndex . ' col.col' . $column]['*display'] = 'none'; // target IE6+7
903
                    }
904
                }
905
            }
906
@@ 937-940 (lines=4) @@
934
                    $pt_height = $rowDimension->getRowHeight();
935
                }
936
                $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['height'] = $pt_height . 'pt';
937
                if ($rowDimension->getVisible() === false) {
938
                    $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['display'] = 'none';
939
                    $css['table.sheet' . $sheetIndex . ' tr.row' . $row]['visibility'] = 'hidden';
940
                }
941
            }
942
        }
943