8000 keep a reference to all cache pools · symfony/symfony@f8e56a5 · GitHub
[go: up one dir, main page]

Skip to content

Commit f8e56a5

Browse files
committed
keep a reference to all cache pools
1 parent afe2c27 commit f8e56a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Cache/DependencyInjection/CachePoolPass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,10 +198,10 @@ public function process(ContainerBuilder $container)
198198
}
199199

200200
if (null !== $clearer) {
201-
$clearers[$clearer][$name] = new Reference($id, $container::IGNORE_ON_UNINITIALIZED_REFERENCE);
201+
$clearers[$clearer][$name] = new Reference($id);
202202
}
203203

204-
$allPools[$name] = new Reference($id, $container::IGNORE_ON_UNINITIALIZED_REFERENCE);
204+
$allPools[$name] = new Reference($id);
205205
}
206206

207207
if (!$needsMessageHandler) {

0 commit comments

Comments
 (0)
0