Code Duplication    Length = 6-6 lines in 2 locations

app/Vendor/PHPExcel/PHPExcel/Reader/Excel5.php 2 locations

@@ 1259-1264 (lines=6) @@
1256
					// not needed yet, fix later if necessary
1257
					break;
1258
1259
				case 0x1E: // null-terminated string prepended by dword string length
1260
					$byteLength = self::_GetInt4d($this->_summaryInformation, $secOffset + 4 + $offset);
1261
					$value = substr($this->_summaryInformation, $secOffset + 8 + $offset, $byteLength);
1262
					$value = PHPExcel_Shared_String::ConvertEncoding($value, 'UTF-8', $codePage);
1263
					$value = rtrim($value);
1264
					break;
1265
1266
				case 0x40: // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
1267
					// PHP-time
@@ 1430-1435 (lines=6) @@
1427
					// not needed yet, fix later if necessary
1428
					break;
1429
1430
				case 0x1E:	//	null-terminated string prepended by dword string length
1431
					$byteLength = self::_GetInt4d($this->_documentSummaryInformation, $secOffset + 4 + $offset);
1432
					$value = substr($this->_documentSummaryInformation, $secOffset + 8 + $offset, $byteLength);
1433
					$value = PHPExcel_Shared_String::ConvertEncoding($value, 'UTF-8', $codePage);
1434
					$value = rtrim($value);
1435
					break;
1436
1437
				case 0x40:	//	Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
1438
					// PHP-Time