map_null_values.xml 839 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <routes xmlns="http://symfony.com/schema/routing"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://symfony.com/schema/routing
  5. http://symfony.com/schema/routing/routing-1.0.xsd">
  6. <route id="blog" path="/blog">
  7. <default key="_controller">
  8. <string>AcmeBlogBundle:Blog:index</string>
  9. </default>
  10. <default key="map">
  11. <map>
  12. <bool key="boolean" xsi:nil="true" />
  13. <int key="integer" xsi:nil="true" />
  14. <float key="float" xsi:nil="true" />
  15. <string key="string" xsi:nil="1" />
  16. <list key="list" xsi:nil="true" />
  17. <map key="map" xsi:nil="true" />
  18. </map>
  19. </default>
  20. </route>
  21. </routes>