Skip to content

Commit 81c8690

Browse files
committed
MQE-347: Use a remove tag instead of a remove attribute
- fix codesniffer error from static check
1 parent a7121eb commit 81c8690

File tree

1 file changed

+1
-1
lines changed
  • src/Magento/FunctionalTestingFramework/Test/Config/Converter/Dom

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/Test/Config/Converter/Dom/Flat.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function convertXml(\DOMNode $source, $basePath = '')
7373
$value = [];
7474
/** @var \DOMNode $node */
7575
foreach ($source->childNodes as $node) {
76-
if ($node->nodeType == XML_ELEMENT_NODE) {
76+
if ($node->nodeType == XML_ELEMENT_NODE) {
7777
$nodeName = $node->nodeName;
7878
$nodePath = $basePath . '/' . $nodeName;
7979
$arrayKeyAttribute = $this->arrayNodeConfig->getAssocArrayKeyAttribute($nodePath);

0 commit comments

Comments
 (0)