Completed
Push — master ( 4847fc...8f2a76 )
by Stefan
02:32
created
src/OneSheet/Sheet.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
             throw new \InvalidArgumentException('Array must contain integer keys and numeric values only!');
120 120
         }
121 121
 
122
-        $this->columnWidths = $columnWidths + $this->columnWidths;
122
+        $this->columnWidths = $columnWidths+$this->columnWidths;
123 123
     }
124 124
 
125 125
     /**
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
      */
143 143
     public function getColumnWidths()
144 144
     {
145
-        return array_map(function ($width) {
145
+        return array_map(function($width) {
146 146
             if ($this->maxColumnWidth && $this->maxColumnWidth < $width) {
147 147
                 return $this->maxColumnWidth;
148 148
             } elseif ($this->minColumnWidth && $this->minColumnWidth > $width) {
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     public function getDimensionUpperBound()
160 160
     {
161
-        return $this->cellBuilder->getCellId($this->maxColumnCount, $this->rowIndex - 1);
161
+        return $this->cellBuilder->getCellId($this->maxColumnCount, $this->rowIndex-1);
162 162
     }
163 163
 
164 164
     /**
@@ -248,6 +248,6 @@  discard block
 block discarded – undo
248 248
         ) {
249 249
             return '';
250 250
         }
251
-        return sprintf(SheetXml::FREEZE_PANE_XML, array_pop($m) - 1, $this->freezePaneCellId);
251
+        return sprintf(SheetXml::FREEZE_PANE_XML, array_pop($m)-1, $this->freezePaneCellId);
252 252
     }
253 253
 }
Please login to merge, or discard this patch.