Completed
Push — master ( 01c44a...cc980e )
by Stefan
03:21 queued 40s
created
src/OneSheet/Sheet.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
             throw new \InvalidArgumentException('Array must contain integer keys and numeric values only!');
121 121
         }
122 122
 
123
-        $this->columnWidths = $columnWidths + $this->columnWidths;
123
+        $this->columnWidths = $columnWidths+$this->columnWidths;
124 124
     }
125 125
 
126 126
     /**
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
     public function getDimensionXml()
253 253
     {
254 254
         return sprintf(SheetXml::DIMENSION_XML,
255
-            $this->cellBuilder->getCellId($this->maxColumnCount - 1, $this->rowIndex - 1)
255
+            $this->cellBuilder->getCellId($this->maxColumnCount-1, $this->rowIndex-1)
256 256
         );
257 257
     }
258 258
 
@@ -268,6 +268,6 @@  discard block
 block discarded – undo
268 268
             return '';
269 269
         }
270 270
 
271
-        return sprintf(SheetXml::SHEETVIEWS_XML, array_pop($m) - 1, $this->freezePaneCellId);
271
+        return sprintf(SheetXml::SHEETVIEWS_XML, array_pop($m)-1, $this->freezePaneCellId);
272 272
     }
273 273
 }
Please login to merge, or discard this patch.