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 e5d644e commit 5506a64Copy full SHA for 5506a64
src/Symfony/Component/Cache/DependencyInjection/CachePoolPass.php
@@ -58,7 +58,7 @@ public function process(ContainerBuilder $container)
58
continue;
59
}
60
$class = $adapter->getClass();
61
- while ($adapter instanceof ChildDefinition) {
+ while (ChainAdapter::class !== $class && $adapter instanceof ChildDefinition) {
62
$adapter = $container->findDefinition($adapter->getParent());
63
$class = $class ?: $adapter->getClass();
64
if ($t = $adapter->getTag('cache.pool')) {
0 commit comments