-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathcache_manager_commands.xml
More file actions
30 lines (23 loc) · 1.28 KB
/
cache_manager_commands.xml
File metadata and controls
30 lines (23 loc) · 1.28 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.command.invalidate_path" class="FOS\HttpCacheBundle\Command\InvalidatePathCommand">
<argument type="service" id="fos_http_cache.cache_manager" />
<tag name="console.command"/>
</service>
<service id="fos_http_cache.command.invalidate_regex" class="FOS\HttpCacheBundle\Command\InvalidateRegexCommand">
<argument type="service" id="fos_http_cache.cache_manager" />
<tag name="console.command"/>
</service>
<service id="fos_http_cache.command.refresh_path" class="FOS\HttpCacheBundle\Command\RefreshPathCommand">
<argument type="service" id="fos_http_cache.cache_manager" />
<tag name="console.command"/>
</service>
<service id="fos_http_cache.command.clear" class="FOS\HttpCacheBundle\Command\ClearCommand">
<argument type="service" id="fos_http_cache.cache_manager" />
<tag name="console.command"/>
</service>
</services>
</container>