Code Duplication    Length = 10-10 lines in 2 locations

src/PhpSpreadsheet/Reader/Xls.php 2 locations

@@ 2811-2820 (lines=10) @@
2808
    /**
2809
     * Read MSODRAWINGGROUP record.
2810
     */
2811
    private function readMsoDrawingGroup()
2812
    {
2813
        $length = self::getInt2d($this->data, $this->pos + 2);
2814
2815
        // get spliced record data
2816
        $splicedRecordData = $this->getSplicedRecordData();
2817
        $recordData = $splicedRecordData['recordData'];
2818
2819
        $this->drawingGroupData .= $recordData;
2820
    }
2821
2822
    /**
2823
     * SST - Shared String Table.
@@ 4154-4163 (lines=10) @@
4151
    /**
4152
     * Read MSODRAWING record.
4153
     */
4154
    private function readMsoDrawing()
4155
    {
4156
        $length = self::getInt2d($this->data, $this->pos + 2);
4157
4158
        // get spliced record data
4159
        $splicedRecordData = $this->getSplicedRecordData();
4160
        $recordData = $splicedRecordData['recordData'];
4161
4162
        $this->drawingData .= $recordData;
4163
    }
4164
4165
    /**
4166
     * Read OBJ record.