generated from Sammyjo20/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
Hello, when using like this, comment tag is not rendered:
$order_body = XmlWriter::make()
->setXmlStandalone(true)
->write('orders', [
'order' => [
'cod' => '123',
'comment' => 'test comment',
],
]);
"""
<?xml version="1.0" encoding="utf-8"?>\n
<orders>\n
<order>\n
<cod>123</cod>\n
test comment\n
</order>\n
</orders>\n
"""
Should be:
"""
<?xml version="1.0" encoding="utf-8"?>\n
<orders>\n
<order>\n
<cod>123</cod>\n
<comment>test comment</comment>\n
</order>\n
</orders>\n
"""
Metadata
Metadata
Assignees
Labels
No labels