Test Failed
Pull Request — master (#47)
by
unknown
20:23
created
src/Xlsx/RowIterator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.