@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | throw new \InvalidArgumentException('Array must contain integer keys and numeric values only!'); |
106 | 106 | } |
107 | 107 | |
108 | - $this->columnWidths = $columnWidths + $this->columnWidths; |
|
108 | + $this->columnWidths = $columnWidths+$this->columnWidths; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | /** |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | */ |
126 | 126 | public function getDimensionUpperBound() |
127 | 127 | { |
128 | - return $this->cellBuilder->getCellId($this->maxColumnCount, $this->rowIndex - 1); |
|
128 | + return $this->cellBuilder->getCellId($this->maxColumnCount, $this->rowIndex-1); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -215,6 +215,6 @@ discard block |
||
215 | 215 | ) { |
216 | 216 | return ''; |
217 | 217 | } |
218 | - return sprintf(SheetXml::FREEZE_PANE_XML, array_pop($m) - 1, $this->freezePaneCellId); |
|
218 | + return sprintf(SheetXml::FREEZE_PANE_XML, array_pop($m)-1, $this->freezePaneCellId); |
|
219 | 219 | } |
220 | 220 | } |