Code Duplication    Length = 3-3 lines in 3 locations

src/PhpSpreadsheet/Reader/Xlsx.php 3 locations

@@ 703-705 (lines=3) @@
700
                            }
701
702
                            if (isset($xmlSheet->sheetViews, $xmlSheet->sheetViews->sheetView)) {
703
                                if (isset($xmlSheet->sheetViews->sheetView['zoomScale'])) {
704
                                    $docSheet->getSheetView()->setZoomScale((int) ($xmlSheet->sheetViews->sheetView['zoomScale']));
705
                                }
706
                                if (isset($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])) {
707
                                    $docSheet->getSheetView()->setZoomScaleNormal((int) ($xmlSheet->sheetViews->sheetView['zoomScaleNormal']));
708
                                }
@@ 706-708 (lines=3) @@
703
                                if (isset($xmlSheet->sheetViews->sheetView['zoomScale'])) {
704
                                    $docSheet->getSheetView()->setZoomScale((int) ($xmlSheet->sheetViews->sheetView['zoomScale']));
705
                                }
706
                                if (isset($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])) {
707
                                    $docSheet->getSheetView()->setZoomScaleNormal((int) ($xmlSheet->sheetViews->sheetView['zoomScaleNormal']));
708
                                }
709
                                if (isset($xmlSheet->sheetViews->sheetView['view'])) {
710
                                    $docSheet->getSheetView()->setView((string) $xmlSheet->sheetViews->sheetView['view']);
711
                                }
@@ 709-711 (lines=3) @@
706
                                if (isset($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])) {
707
                                    $docSheet->getSheetView()->setZoomScaleNormal((int) ($xmlSheet->sheetViews->sheetView['zoomScaleNormal']));
708
                                }
709
                                if (isset($xmlSheet->sheetViews->sheetView['view'])) {
710
                                    $docSheet->getSheetView()->setView((string) $xmlSheet->sheetViews->sheetView['view']);
711
                                }
712
                                if (isset($xmlSheet->sheetViews->sheetView['showGridLines'])) {
713
                                    $docSheet->setShowGridLines(self::boolean((string) $xmlSheet->sheetViews->sheetView['showGridLines']));
714
                                }