We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 479eb87 commit 11391f6Copy full SHA for 11391f6
1 file changed
README.md
@@ -38,7 +38,7 @@ cache_adapter_doctrine:
38
39
### Usage
40
41
-When using a configuration like below, you will get an service with the id `cache/doctrine-adapter-bundle`.
+When using a configuration like below, you will get an service with the id `cache.provider.acme_apc_cache`.
42
```yaml
43
cache_adapter_doctrine:
44
providers:
@@ -51,7 +51,7 @@ Use the new service as any PSR-6 cache.
51
52
``` php
53
/** @var CacheItemPoolInterface $cache */
54
-$cache = $this->container->get('cache/doctrine-adapter-bundle');
+$cache = $this->container->get('cache.provider.acme_apc_cache');
55
56
/** @var CacheItemInterface $item */
57
$item = $cache->getItem('cache-key');
0 commit comments