Code Duplication    Length = 10-10 lines in 2 locations

src/PhpSpreadsheet/Reader/Xls.php 2 locations

@@ 2787-2796 (lines=10) @@
2784
    /**
2785
     * Read MSODRAWINGGROUP record.
2786
     */
2787
    private function readMsoDrawingGroup()
2788
    {
2789
        $length = self::getInt2d($this->data, $this->pos + 2);
2790
2791
        // get spliced record data
2792
        $splicedRecordData = $this->getSplicedRecordData();
2793
        $recordData = $splicedRecordData['recordData'];
2794
2795
        $this->drawingGroupData .= $recordData;
2796
    }
2797
2798
    /**
2799
     * SST - Shared String Table.
@@ 4130-4139 (lines=10) @@
4127
    /**
4128
     * Read MSODRAWING record.
4129
     */
4130
    private function readMsoDrawing()
4131
    {
4132
        $length = self::getInt2d($this->data, $this->pos + 2);
4133
4134
        // get spliced record data
4135
        $splicedRecordData = $this->getSplicedRecordData();
4136
        $recordData = $splicedRecordData['recordData'];
4137
4138
        $this->drawingData .= $recordData;
4139
    }
4140
4141
    /**
4142
     * Read OBJ record.