Code Duplication    Length = 5-6 lines in 3 locations

app/Vendor/PHPExcel/PHPExcel/Writer/Excel5.php 3 locations

@@ 695-699 (lines=5) @@
692
693
				$dataSection_Content_Offset += 4 + 4 + strlen($dataProp['data']['data']);
694
			}
695
			elseif($dataProp['type']['data'] == 0x40){ // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
696
				$dataSection_Content .= $dataProp['data']['data'];
697
698
				$dataSection_Content_Offset += 4 + 8;
699
			}
700
			else {
701
				// Data Type Not Used at the moment
702
				$dataSection_Content .= $dataProp['data']['data'];
@@ 700-705 (lines=6) @@
697
698
				$dataSection_Content_Offset += 4 + 8;
699
			}
700
			else {
701
				// Data Type Not Used at the moment
702
				$dataSection_Content .= $dataProp['data']['data'];
703
704
				$dataSection_Content_Offset += 4 + $dataProp['data']['length'];
705
			}
706
		}
707
		// Now $dataSection_Content_Offset contains the size of the content
708
@@ 874-878 (lines=5) @@
871
872
				$dataSection_Content_Offset += 4 + 4 + strlen($dataProp['data']['data']);
873
			}
874
			elseif($dataProp['type']['data'] == 0x40){ // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
875
				$dataSection_Content .= $dataProp['data']['data'];
876
877
				$dataSection_Content_Offset += 4 + 8;
878
			}
879
			else {
880
				// Data Type Not Used at the moment
881
			}