-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathcache_manager.xml
More file actions
30 lines (26 loc) · 1.22 KB
/
cache_manager.xml
File metadata and controls
30 lines (26 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?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">
<services>
<service id="fos_http_cache.cache_manager"
class="FOS\HttpCacheBundle\CacheManager"
public="true"
>
<argument type="service" id="fos_http_cache.default_proxy_client" />
<argument type="service" id="router" />
<call method="setEventDispatcher">
<argument id="event_dispatcher" type="service" on-invalid="ignore" />
</call>
<call method="setGenerateUrlType">
<argument>%fos_http_cache.cache_manager.generate_url_type%</argument>
</call>
</service>
<service id="FOS\HttpCacheBundle\CacheManager" alias="fos_http_cache.cache_manager" public="true"/>
<service id="fos_http_cache.event_listener.log"
class="FOS\HttpCache\EventListener\LogListener"
abstract="true">
<argument type="service" id="logger" />
</service>
</services>
</container>