Completed
Pull Request — master (#55)
by
unknown
08:02
created
src/Xlsx/RowIterator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
             if (\XMLReader::ELEMENT === $this->xml->nodeType) {
130 130
                 switch ($this->xml->name) {
131 131
                     case 'row':
132
-                        $currentKey = (int)$this->xml->getAttribute('r');
132
+                        $currentKey = (int) $this->xml->getAttribute('r');
133 133
                         $rowBuilder = $this->rowBuilderFactory->create();
134 134
                         break;
135 135
                     case 'c':
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
                         $rowBuilder->addValue($columnIndex, $this->xml->readString());
148 148
                         break;
149 149
                     case 't':
150
-                        if($type == ValueTransformer::TYPE_INLINE_STRING) {
150
+                        if ($type == ValueTransformer::TYPE_INLINE_STRING) {
151 151
                             $rowBuilder->addValue(
152 152
                                 $columnIndex,
153 153
                                 $this->valueTransformer->transform($this->xml->readString(), $type, $style)
Please login to merge, or discard this patch.