Code Duplication    Length = 4-4 lines in 2 locations

src/PhpSpreadsheet/Reader/Excel5.php 2 locations

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