Code Duplication    Length = 10-10 lines in 2 locations

src/PhpSpreadsheet/Reader/Xls.php 2 locations

@@ 2775-2784 (lines=10) @@
2772
    /**
2773
     * Read MSODRAWINGGROUP record.
2774
     */
2775
    private function readMsoDrawingGroup()
2776
    {
2777
        $length = self::getInt2d($this->data, $this->pos + 2);
2778
2779
        // get spliced record data
2780
        $splicedRecordData = $this->getSplicedRecordData();
2781
        $recordData = $splicedRecordData['recordData'];
2782
2783
        $this->drawingGroupData .= $recordData;
2784
    }
2785
2786
    /**
2787
     * SST - Shared String Table.
@@ 4118-4127 (lines=10) @@
4115
    /**
4116
     * Read MSODRAWING record.
4117
     */
4118
    private function readMsoDrawing()
4119
    {
4120
        $length = self::getInt2d($this->data, $this->pos + 2);
4121
4122
        // get spliced record data
4123
        $splicedRecordData = $this->getSplicedRecordData();
4124
        $recordData = $splicedRecordData['recordData'];
4125
4126
        $this->drawingData .= $recordData;
4127
    }
4128
4129
    /**
4130
     * Read OBJ record.