Code Duplication    Length = 3-5 lines in 2 locations

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

@@ 914-916 (lines=3) @@
911
									if ($row["outlineLevel"] > 0) {
912
										$docSheet->getRowDimension(intval($row["r"]))->setOutlineLevel(intval($row["outlineLevel"]));
913
									}
914
									if ($row["s"] && !$this->_readDataOnly) {
915
										$docSheet->getRowDimension(intval($row["r"]))->setXfIndex(intval($row["s"]));
916
									}
917
918
									foreach ($row->c as $c) {
919
										$r 					= (string) $c["r"];
@@ 1025-1029 (lines=5) @@
1022
										}
1023
1024
										// Style information?
1025
										if ($c["s"] && !$this->_readDataOnly) {
1026
											// no style index means 0, it seems
1027
											$cell->setXfIndex(isset($styles[intval($c["s"])]) ?
1028
												intval($c["s"]) : 0);
1029
										}
1030
									}
1031
								}
1032
							}