@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | if (\XMLReader::ELEMENT === $this->xml->nodeType) { |
| 136 | 136 | switch ($this->xml->name) { |
| 137 | 137 | case 'row': |
| 138 | - $currentKey = (int)$this->xml->getAttribute('r'); |
|
| 138 | + $currentKey = (int) $this->xml->getAttribute('r'); |
|
| 139 | 139 | $rowBuilder = $this->rowBuilderFactory->create(); |
| 140 | 140 | break; |
| 141 | 141 | case 'c': |
@@ -155,11 +155,11 @@ discard block |
||
| 155 | 155 | case 'row': |
| 156 | 156 | $currentValue = $rowBuilder->getData(); |
| 157 | 157 | |
| 158 | - if($this->maxColumnCount < count($currentValue)) { |
|
| 158 | + if ($this->maxColumnCount < count($currentValue)) { |
|
| 159 | 159 | $this->maxColumnCount = count($currentValue); |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - if(count($currentValue) < $this->maxColumnCount) { |
|
| 162 | + if (count($currentValue) < $this->maxColumnCount) { |
|
| 163 | 163 | array_push($currentValue, ''); |
| 164 | 164 | } |
| 165 | 165 | |