Skip to content

Commit dd0b3d9

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: [Console] Dispatch `ConsoleTerminateEvent` when exiting on signal [Cache][VarExporter] Fix proxy generation to deal with edgy behaviors of internal classes fix detecting the installed FrameworkBundle version [Notifier] [Telegram] Fix version and exception signature fix tests, partially reverts 1333caf89af4630e03f792c45b62c4dee6b5bf3a fix tests Fix merge error with ErrorLoggerCompilerPass
2 parents 5823a77 + 5fe8d55 commit dd0b3d9

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)