We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7121eb commit 81c8690Copy full SHA for 81c8690
src/Magento/FunctionalTestingFramework/Test/Config/Converter/Dom/Flat.php
@@ -73,7 +73,7 @@ public function convertXml(\DOMNode $source, $basePath = '')
73
$value = [];
74
/** @var \DOMNode $node */
75
foreach ($source->childNodes as $node) {
76
- if ($node->nodeType == XML_ELEMENT_NODE) {
+ if ($node->nodeType == XML_ELEMENT_NODE) {
77
$nodeName = $node->nodeName;
78
$nodePath = $basePath . '/' . $nodeName;
79
$arrayKeyAttribute = $this->arrayNodeConfig->getAssocArrayKeyAttribute($nodePath);
0 commit comments