[FrameworkBundle] fixed CS

This commit is contained in:
Fabien Potencier 2010-08-05 08:36:21 +02:00
parent c6bde10076
commit d440f2edbe

View File

@ -5,60 +5,60 @@
targetNamespace="http://www.symfony-project.org/schema/dic/symfony"
elementFormDefault="qualified">
<xsd:element name="config" type="config" />
<xsd:element name="templating" type="templating" />
<xsd:element name="user" type="user" />
<xsd:element name="config" type="config" />
<xsd:element name="templating" type="templating" />
<xsd:element name="user" type="user" />
<xsd:complexType name="config">
<xsd:sequence>
<xsd:element name="router" type="router" minOccurs="0" maxOccurs="1" />
<xsd:element name="validation" type="validation" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
<xsd:complexType name="config">
<xsd:sequence>
<xsd:element name="router" type="router" minOccurs="0" maxOccurs="1" />
<xsd:element name="validation" type="validation" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
<xsd:attribute name="ide" type="xsd:string" />
<xsd:attribute name="profiler" type="xsd:boolean" />
<xsd:attribute name="toolbar" type="xsd:boolean" />
</xsd:complexType>
<xsd:attribute name="ide" type="xsd:string" />
<xsd:attribute name="profiler" type="xsd:boolean" />
<xsd:attribute name="toolbar" type="xsd:boolean" />
</xsd:complexType>
<xsd:complexType name="router">
<xsd:attribute name="resource" type="xsd:string" />
</xsd:complexType>
<xsd:complexType name="router">
<xsd:attribute name="resource" type="xsd:string" />
</xsd:complexType>
<xsd:complexType name="validation">
<xsd:attribute name="enabled" type="xsd:boolean" />
<xsd:attribute name="annotations" type="xsd:boolean" />
</xsd:complexType>
<xsd:complexType name="validation">
<xsd:attribute name="enabled" type="xsd:boolean" />
<xsd:attribute name="annotations" type="xsd:boolean" />
</xsd:complexType>
<xsd:complexType name="user">
<xsd:sequence>
<xsd:element name="session" type="session" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
<xsd:complexType name="user">
<xsd:sequence>
<xsd:element name="session" type="session" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
<xsd:attribute name="class" type="xsd:string" />
<xsd:attribute name="default_locale" type="xsd:string" />
</xsd:complexType>
<xsd:attribute name="class" type="xsd:string" />
<xsd:attribute name="default_locale" type="xsd:string" />
</xsd:complexType>
<xsd:complexType name="session">
<xsd:attribute name="class" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="lifetime" type="xsd:integer" />
<xsd:attribute name="path" type="xsd:string" />
<xsd:attribute name="domain" type="xsd:string" />
<xsd:attribute name="secure" type="xsd:string" />
<xsd:attribute name="httponly" type="xsd:string" />
<xsd:attribute name="cache_limiter" type="xsd:string" />
<xsd:attribute name="pdo.db_table" type="xsd:string" />
</xsd:complexType>
<xsd:complexType name="session">
<xsd:attribute name="class" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="lifetime" type="xsd:integer" />
<xsd:attribute name="path" type="xsd:string" />
<xsd:attribute name="domain" type="xsd:string" />
<xsd:attribute name="secure" type="xsd:string" />
<xsd:attribute name="httponly" type="xsd:string" />
<xsd:attribute name="cache_limiter" type="xsd:string" />
<xsd:attribute name="pdo.db_table" type="xsd:string" />
</xsd:complexType>
<xsd:complexType name="templating">
<xsd:sequence>
<xsd:element name="loader" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
<xsd:complexType name="templating">
<xsd:sequence>
<xsd:element name="loader" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
<xsd:attribute name="escaping" type="xsd:string" />
<xsd:attribute name="assets_version" type="xsd:string" />
<xsd:attribute name="path" type="xsd:string" />
<xsd:attribute name="cache" type="xsd:string" />
</xsd:complexType>
<xsd:attribute name="escaping" type="xsd:string" />
<xsd:attribute name="assets_version" type="xsd:string" />
<xsd:attribute name="path" type="xsd:string" />
<xsd:attribute name="cache" type="xsd:string" />
</xsd:complexType>
</xsd:schema>