Passed
Pull Request — master (#3)
by
unknown
03:22
created
src/XmlToArray.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Vyuldashev\XmlToArray;
6 6
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         $sameNames = false;
60 60
         $result = $this->convertAttributes($element->attributes);
61 61
 
62
-        if( count($element->childNodes)  > 1){
62
+        if (count($element->childNodes) > 1) {
63 63
             $childNodeNames = [];
64 64
             foreach ($element->childNodes as $key => $node) {
65 65
                 $childNodeNames[] = $node->nodeName;
Please login to merge, or discard this patch.