Skip to content

Commit 5b5dca4

Browse files
authored
Fix merge error with ErrorLoggerCompilerPass
1 parent 87365f4 commit 5b5dca4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DependencyInjection/Compiler/ErrorLoggerCompilerPass.php

+2-2
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)