SimpleClassObject.xml 769 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <serializer>
  3. <class name="JMS\Serializer\Tests\Fixtures\SimpleClassObject">
  4. <xml-namespace prefix="foo" uri="http://foo.example.org"/>
  5. <xml-namespace prefix="old_foo" uri="http://old.foo.example.org"/>
  6. <xml-namespace prefix="new_foo" uri="http://new.foo.example.org"/>
  7. <property name="foo" type="string" xml-attribute="true">
  8. <xml-element namespace="http://old.foo.example.org"/>
  9. </property>
  10. <property name="bar" type="string">
  11. <xml-element namespace="http://foo.example.org"/>
  12. </property>
  13. <property name="moo" type="string">
  14. <xml-element namespace="http://new.foo.example.org"/>
  15. </property>
  16. </class>
  17. </serializer>