Completed
Pull Request — master (#33)
by Christophe
03:27
created
src/Xlsx/RowIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
             if (\XMLReader::ELEMENT === $this->xml->nodeType) {
111 111
                 switch ($this->xml->name) {
112 112
                     case 'row' :
113
-                        $currentKey = (int)$this->xml->getAttribute('r');
113
+                        $currentKey = (int) $this->xml->getAttribute('r');
114 114
                         $rowBuilder = $this->rowBuilderFactory->create();
115 115
                         break;
116 116
                     case 'c' :
Please login to merge, or discard this patch.
src/Xlsx/Relationships.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         while ($xml->read()) {
50 50
             if (\XMLReader::ELEMENT === $xml->nodeType && 'Relationship' === $xml->name) {
51 51
 
52
-                $type = basename((string)$xml->getAttribute('Type'));
52
+                $type = basename((string) $xml->getAttribute('Type'));
53 53
                 $this->storeRelationShipByType($type, $xml->getAttribute('Id'), 'xl/' . $xml->getAttribute('Target'));
54 54
             }
55 55
         }
Please login to merge, or discard this patch.