Code Duplication    Length = 4-4 lines in 2 locations

src/PhpSpreadsheet/Reader/Excel5.php 2 locations

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