Code Duplication    Length = 10-10 lines in 2 locations

src/PhpSpreadsheet/Reader/Xls.php 2 locations

@@ 2944-2953 (lines=10) @@
2941
    /**
2942
     * Read MSODRAWINGGROUP record.
2943
     */
2944
    private function readMsoDrawingGroup()
2945
    {
2946
        $length = self::getUInt2d($this->data, $this->pos + 2);
2947
2948
        // get spliced record data
2949
        $splicedRecordData = $this->getSplicedRecordData();
2950
        $recordData = $splicedRecordData['recordData'];
2951
2952
        $this->drawingGroupData .= $recordData;
2953
    }
2954
2955
    /**
2956
     * SST - Shared String Table.
@@ 4295-4304 (lines=10) @@
4292
    /**
4293
     * Read MSODRAWING record.
4294
     */
4295
    private function readMsoDrawing()
4296
    {
4297
        $length = self::getUInt2d($this->data, $this->pos + 2);
4298
4299
        // get spliced record data
4300
        $splicedRecordData = $this->getSplicedRecordData();
4301
        $recordData = $splicedRecordData['recordData'];
4302
4303
        $this->drawingData .= $recordData;
4304
    }
4305
4306
    /**
4307
     * Read OBJ record.