Completed
Push — master ( 8206f8...a56904 )
by Stefan
03:17
created
src/OneSheet/Sheet.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             throw new \InvalidArgumentException('Array must contain integer keys and numeric values only!');
95 95
         }
96 96
 
97
-        $this->columnWidths = $columnWidths + $this->columnWidths;
97
+        $this->columnWidths = $columnWidths+$this->columnWidths;
98 98
     }
99 99
 
100 100
     /**
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      */
115 115
     public function getDimensionUpperBound()
116 116
     {
117
-        return $this->cellBuilder->getCellId($this->maxRowWidth, $this->rowIndex - 1);
117
+        return $this->cellBuilder->getCellId($this->maxRowWidth, $this->rowIndex-1);
118 118
     }
119 119
 
120 120
     /**
@@ -212,6 +212,6 @@  discard block
 block discarded – undo
212 212
         ) {
213 213
             return '';
214 214
         }
215
-        return sprintf(SheetXml::FREEZE_PANE_XML, array_pop($m) - 1, $this->freezePaneId);
215
+        return sprintf(SheetXml::FREEZE_PANE_XML, array_pop($m)-1, $this->freezePaneId);
216 216
     }
217 217
 }
Please login to merge, or discard this patch.