We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62ed820 commit 50063c8Copy full SHA for 50063c8
src/DependencyInjection/CacheAdapterExtension.php
@@ -49,6 +49,8 @@ public function load(array $configs, ContainerBuilder $container)
49
$def = $container->register('cache.provider.'.$name, DummyAdapter::class);
50
$def->setFactory([new Reference($arguments['factory']), 'createAdapter'])
51
->addArgument($arguments['options']);
52
+
53
+ $def->setTags(['cache.provider' => []]);
54
}
55
56
$container->setAlias('cache', 'cache.provider.'.$first);
0 commit comments