xml icon indicating copy to clipboard operation
xml copied to clipboard

Serializer wihout namespace

Open victorgp89 opened this issue 6 years ago • 1 comments

Hi,

image

I need to make this XML as you can see it doesn't have namespace, it's posible?

When I tried this:

image

The result is : image

I want to avoid xmlns=""

Thanks for advance

victorgp89 avatar Nov 15 '18 10:11 victorgp89

If you register the empty namespace, you can see the xmlns appear just once in the root element, and not in every child element. Like this:

$service->namespaceMap[''] = '';

Does that help?

evert avatar Nov 15 '18 14:11 evert