Completed
Push — master ( 829924...fb7d68 )
by Stefan
09:58
created
src/OneSheet/Sheet.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.