Code Duplication    Length = 4-4 lines in 2 locations

src/PhpSpreadsheet/Reader/Xls.php 2 locations

@@ 1340-1343 (lines=4) @@
1337
                    $value = \PhpOffice\PhpSpreadsheet\Shared\StringHelper::convertEncoding($value, 'UTF-8', $codePage);
1338
                    $value = rtrim($value);
1339
                    break;
1340
                case 0x40: // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
1341
                    // PHP-time
1342
                    $value = \PhpOffice\PhpSpreadsheet\Shared\OLE::OLE2LocalDate(substr($this->summaryInformation, $secOffset + 4 + $offset, 8));
1343
                    break;
1344
                case 0x47: // Clipboard format
1345
                    // not needed yet, fix later if necessary
1346
                    break;
@@ 1478-1481 (lines=4) @@
1475
                    $value = \PhpOffice\PhpSpreadsheet\Shared\StringHelper::convertEncoding($value, 'UTF-8', $codePage);
1476
                    $value = rtrim($value);
1477
                    break;
1478
                case 0x40:    //    Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
1479
                    // PHP-Time
1480
                    $value = \PhpOffice\PhpSpreadsheet\Shared\OLE::OLE2LocalDate(substr($this->documentSummaryInformation, $secOffset + 4 + $offset, 8));
1481
                    break;
1482
                case 0x47:    //    Clipboard format
1483
                    // not needed yet, fix later if necessary
1484
                    break;