Changeset 19562
- Timestamp:
- 06/25/09 20:11:45 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
components/dependency_injection/trunk/lib/services.xsd
r16843 r19562 31 31 <xs:attribute name="id" type="xs:string" /> 32 32 <xs:attribute name="service" type="xs:string" /> 33 <xs:attribute name="class" type=" boolean" />33 <xs:attribute name="class" type="xs:string" /> 34 34 <xs:attribute name="method" type="xs:string" /> 35 35 <xs:attribute name="function" type="xs:string" /> components/dependency_injection/trunk/lib/sfServiceContainerLoaderFileXml.php
r16840 r19562 154 154 else 155 155 { 156 $class = $service->configurator['class'];156 $class = (string) $service->configurator['class']; 157 157 } 158 158

