Code Duplication    Length = 3-3 lines in 3 locations

src/PhpSpreadsheet/Reader/Xlsx.php 3 locations

@@ 715-717 (lines=3) @@
712
                            }
713
714
                            if (isset($xmlSheet->sheetViews) && isset($xmlSheet->sheetViews->sheetView)) {
715
                                if (isset($xmlSheet->sheetViews->sheetView['zoomScale'])) {
716
                                    $docSheet->getSheetView()->setZoomScale((int) ($xmlSheet->sheetViews->sheetView['zoomScale']));
717
                                }
718
                                if (isset($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])) {
719
                                    $docSheet->getSheetView()->setZoomScaleNormal((int) ($xmlSheet->sheetViews->sheetView['zoomScaleNormal']));
720
                                }
@@ 718-720 (lines=3) @@
715
                                if (isset($xmlSheet->sheetViews->sheetView['zoomScale'])) {
716
                                    $docSheet->getSheetView()->setZoomScale((int) ($xmlSheet->sheetViews->sheetView['zoomScale']));
717
                                }
718
                                if (isset($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])) {
719
                                    $docSheet->getSheetView()->setZoomScaleNormal((int) ($xmlSheet->sheetViews->sheetView['zoomScaleNormal']));
720
                                }
721
                                if (isset($xmlSheet->sheetViews->sheetView['view'])) {
722
                                    $docSheet->getSheetView()->setView((string) $xmlSheet->sheetViews->sheetView['view']);
723
                                }
@@ 721-723 (lines=3) @@
718
                                if (isset($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])) {
719
                                    $docSheet->getSheetView()->setZoomScaleNormal((int) ($xmlSheet->sheetViews->sheetView['zoomScaleNormal']));
720
                                }
721
                                if (isset($xmlSheet->sheetViews->sheetView['view'])) {
722
                                    $docSheet->getSheetView()->setView((string) $xmlSheet->sheetViews->sheetView['view']);
723
                                }
724
                                if (isset($xmlSheet->sheetViews->sheetView['showGridLines'])) {
725
                                    $docSheet->setShowGridLines(self::boolean((string) $xmlSheet->sheetViews->sheetView['showGridLines']));
726
                                }