Code Duplication    Length = 4-4 lines in 2 locations

src/PhpSpreadsheet/Reader/Excel5.php 2 locations

@@ 1346-1349 (lines=4) @@
1343
                    $value = \PhpSpreadsheet\Shared\StringHelper::convertEncoding($value, 'UTF-8', $codePage);
1344
                    $value = rtrim($value);
1345
                    break;
1346
                case 0x40: // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
1347
                    // PHP-time
1348
                    $value = \PhpSpreadsheet\Shared\OLE::OLE2LocalDate(substr($this->summaryInformation, $secOffset + 4 + $offset, 8));
1349
                    break;
1350
                case 0x47: // Clipboard format
1351
                    // not needed yet, fix later if necessary
1352
                    break;
@@ 1492-1495 (lines=4) @@
1489
                    $value = \PhpSpreadsheet\Shared\StringHelper::convertEncoding($value, 'UTF-8', $codePage);
1490
                    $value = rtrim($value);
1491
                    break;
1492
                case 0x40:    //    Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
1493
                    // PHP-Time
1494
                    $value = \PhpSpreadsheet\Shared\OLE::OLE2LocalDate(substr($this->documentSummaryInformation, $secOffset + 4 + $offset, 8));
1495
                    break;
1496
                case 0x47:    //    Clipboard format
1497
                    // not needed yet, fix later if necessary
1498
                    break;