Code Duplication    Length = 4-4 lines in 2 locations

src/PhpSpreadsheet/Reader/Xls.php 2 locations

@@ 1364-1367 (lines=4) @@
1361
                    $value = StringHelper::convertEncoding($value, 'UTF-8', $codePage);
1362
                    $value = rtrim($value);
1363
                    break;
1364
                case 0x40: // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
1365
                    // PHP-time
1366
                    $value = OLE::OLE2LocalDate(substr($this->summaryInformation, $secOffset + 4 + $offset, 8));
1367
                    break;
1368
                case 0x47: // Clipboard format
1369
                    // not needed yet, fix later if necessary
1370
                    break;
@@ 1502-1505 (lines=4) @@
1499
                    $value = StringHelper::convertEncoding($value, 'UTF-8', $codePage);
1500
                    $value = rtrim($value);
1501
                    break;
1502
                case 0x40:    //    Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
1503
                    // PHP-Time
1504
                    $value = OLE::OLE2LocalDate(substr($this->documentSummaryInformation, $secOffset + 4 + $offset, 8));
1505
                    break;
1506
                case 0x47:    //    Clipboard format
1507
                    // not needed yet, fix later if necessary
1508
                    break;