Skip to content

Commit 5fe8d55

Browse files
committed
Merge branch '6.3' into 6.4
* 6.3: [Cache][VarExporter] Fix proxy generation to deal with edgy behaviors of internal classes Fix merge error with ErrorLoggerCompilerPass
2 parents b7abd18 + 5b5dca4 commit 5fe8d55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DependencyInjection/Compiler/ErrorLoggerCompilerPass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ class ErrorLoggerCompilerPass implements CompilerPassInterface
2222
{
2323
public function process(ContainerBuilder $container): void
2424
{
25-
if (!$container->hasDefinition('debug.debug_handlers_listener')) {
25+
if (!$container->hasDefinition('debug.error_handler_configurator')) {
2626
return;
2727
}
2828

29-
$definition = $container->getDefinition('debug.debug_handlers_listener');
29+
$definition = $container->getDefinition('debug.error_handler_configurator');
3030
if ($container->hasDefinition('monolog.logger.php')) {
3131
$definition->replaceArgument(0, new Reference('monolog.logger.php'));
3232
}

0 commit comments

Comments
 (0)