Code Duplication    Length = 4-4 lines in 2 locations

src/PhpSpreadsheet/Reader/Xls.php 2 locations

@@ 1334-1337 (lines=4) @@
1331
                    $value = \PhpOffice\PhpSpreadsheet\Shared\StringHelper::convertEncoding($value, 'UTF-8', $codePage);
1332
                    $value = rtrim($value);
1333
                    break;
1334
                case 0x40: // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
1335
                    // PHP-time
1336
                    $value = \PhpOffice\PhpSpreadsheet\Shared\OLE::OLE2LocalDate(substr($this->summaryInformation, $secOffset + 4 + $offset, 8));
1337
                    break;
1338
                case 0x47: // Clipboard format
1339
                    // not needed yet, fix later if necessary
1340
                    break;
@@ 1472-1475 (lines=4) @@
1469
                    $value = \PhpOffice\PhpSpreadsheet\Shared\StringHelper::convertEncoding($value, 'UTF-8', $codePage);
1470
                    $value = rtrim($value);
1471
                    break;
1472
                case 0x40:    //    Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
1473
                    // PHP-Time
1474
                    $value = \PhpOffice\PhpSpreadsheet\Shared\OLE::OLE2LocalDate(substr($this->documentSummaryInformation, $secOffset + 4 + $offset, 8));
1475
                    break;
1476
                case 0x47:    //    Clipboard format
1477
                    // not needed yet, fix later if necessary
1478
                    break;