Code Duplication    Length = 10-10 lines in 2 locations

src/PhpSpreadsheet/Reader/Xls.php 2 locations

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