Code Duplication    Length = 8-8 lines in 2 locations

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

@@ 814-821 (lines=8) @@
811
			$dataSection_NumProps++;
812
		}
813
		//	Created Date/Time
814
		if($this->_phpExcel->getProperties()->getCreated()){
815
			$dataProp = $this->_phpExcel->getProperties()->getCreated();
816
			$dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0C),
817
								   'offset' => array('pack' => 'V'),
818
								   'type' 	=> array('pack' => 'V', 'data' => 0x40), // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
819
								   'data'	=> array('data' => PHPExcel_Shared_OLE::LocalDate2OLE($dataProp)));
820
			$dataSection_NumProps++;
821
		}
822
		//	Modified Date/Time
823
		if($this->_phpExcel->getProperties()->getModified()){
824
			$dataProp = $this->_phpExcel->getProperties()->getModified();
@@ 823-830 (lines=8) @@
820
			$dataSection_NumProps++;
821
		}
822
		//	Modified Date/Time
823
		if($this->_phpExcel->getProperties()->getModified()){
824
			$dataProp = $this->_phpExcel->getProperties()->getModified();
825
			$dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x0D),
826
								   'offset' => array('pack' => 'V'),
827
								   'type' 	=> array('pack' => 'V', 'data' => 0x40), // Filetime (64-bit value representing the number of 100-nanosecond intervals since January 1, 1601)
828
								   'data'	=> array('data' => PHPExcel_Shared_OLE::LocalDate2OLE($dataProp)));
829
			$dataSection_NumProps++;
830
		}
831
		//	Security
832
		$dataSection[] = array('summary'=> array('pack' => 'V', 'data' => 0x13),
833
							   'offset' => array('pack' => 'V'),