Code Duplication    Length = 5-5 lines in 2 locations

app/Vendor/PHPExcel/PHPExcel/Worksheet.php 2 locations

@@ 1492-1496 (lines=5) @@
1489
		}
1490
1491
		// Loop through cells and apply styles
1492
		for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) {
1493
			for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) {
1494
				$this->getCell(PHPExcel_Cell::stringFromColumnIndex($col) . $row)->setXfIndex($xfIndex);
1495
			}
1496
		}
1497
1498
		return $this;
1499
	}
@@ 1548-1552 (lines=5) @@
1545
		}
1546
1547
		// Loop through cells and apply styles
1548
		for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) {
1549
			for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) {
1550
				$this->setConditionalStyles(PHPExcel_Cell::stringFromColumnIndex($col) . $row, $pCellStyle);
1551
			}
1552
		}
1553
1554
		return $this;
1555
	}