Passed
Push — master ( 4d0f8f...ccb877 )
by Stefan
03:07
created
src/OneSheet/Sheet.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,9 @@
 block discarded – undo
149 149
     {
150 150
         $cellXml = '';
151 151
         foreach (array_values($row) as $cellIndex => $cellValue) {
152
-            if (0 == strlen($cellValue)) continue;
152
+            if (0 == strlen($cellValue)) {
153
+             continue;
154
+            }
153 155
             if ($this->useCellAutosizing) {
154 156
                 $this->updateColumnWidths($cellValue, $cellIndex, $style);
155 157
             }
Please login to merge, or discard this patch.