ecfde2801e851b1c7ec39c4e59d6a5977f1c7591
[yaffs-website] / vendor / symfony / routing / Tests / Fixtures / scalar_defaults.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="slug" xsi:nil="true" />
12         <default key="published">
13             <bool>true</bool>
14         </default>
15         <default key="page">
16             <int>1</int>
17         </default>
18         <default key="price">
19             <float>3.5</float>
20         </default>
21         <default key="archived">
22             <bool>false</bool>
23         </default>
24         <default key="free">
25             <bool>1</bool>
26         </default>
27         <default key="locked">
28             <bool>0</bool>
29         </default>
30         <default key="foo" xsi:nil="true" />
31         <default key="bar" xsi:nil="1" />
32     </route>
33 </routes>