Passed
Pull Request — master (#464)
by
unknown
05:07
created
src/Spout/Writer/XLSX/Internal/Worksheet.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
 
185 185
         $rowXML = '<row r="' . $rowIndex . '" spans="1:' . $numCells . '">';
186 186
 
187
-        foreach($dataRow as $cellValue) {
187
+        foreach ($dataRow as $cellValue) {
188 188
             $rowXML .= $this->getCellXML($rowIndex, $cellNumber, $cellValue, $style->getId());
189 189
             $cellNumber++;
190 190
         }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     const SHEET_XML_FILE_HEADER = <<<EOD
29 29
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
30 30
 <worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
31
-EOD;
31
+eod;
32 32
 
33 33
     /** @var \Box\Spout\Writer\Common\Sheet The "external" sheet */
34 34
     protected $externalSheet;
Please login to merge, or discard this patch.