This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.xml

33 lines
1.5 KiB
XML
Raw Normal View History

<?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<parameters>
2011-05-19 21:46:34 +01:00
<parameter key="annotations.reader.class">Doctrine\Common\Annotations\AnnotationReader</parameter>
2011-05-16 20:35:23 +01:00
<parameter key="annotations.cached_reader.class">Doctrine\Common\Annotations\CachedReader</parameter>
2011-05-24 12:29:44 +01:00
<parameter key="annotations.file_cache_reader.class">Doctrine\Common\Annotations\FileCacheReader</parameter>
</parameters>
<services>
<service id="annotations.reader" class="%annotations.reader.class%" public="false">
<call method="setAutoloadAnnotations"><argument>true</argument></call>
</service>
<service id="annotations.cached_reader" class="%annotations.cached_reader.class%" public="false">
<argument type="service" id="annotations.reader" />
2011-05-24 12:29:44 +01:00
<argument /><!-- Cache Implementation -->
<argument /><!-- Debug-Flag -->
</service>
2011-06-08 11:12:55 +01:00
2011-05-24 12:29:44 +01:00
<service id="annotations.file_cache_reader" class="%annotations.file_cache_reader.class%" public="false">
<argument type="service" id="annotations.reader" />
<argument /><!-- Cache-Directory -->
<argument /><!-- Debug Flag -->
</service>
2011-05-24 12:29:44 +01:00
<service id="annotation_reader" alias="annotations.reader" />
</services>
</container>