Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / routing / Tests / Fixtures / map_null_values.xml
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
7     <route id="blog" path="/blog">
8         <default key="_controller">
9             <string>AcmeBlogBundle:Blog:index</string>
10         </default>
11         <default key="map">
12             <map>
13                 <bool key="boolean" xsi:nil="true" />
14                 <int key="integer" xsi:nil="true" />
15                 <float key="float" xsi:nil="true" />
16                 <string key="string" xsi:nil="1" />
17                 <list key="list" xsi:nil="true" />
18                 <map key="map" xsi:nil="true" />
19             </map>
20         </default>
21     </route>
22 </routes>