Skip to content

Commit 0b42713

Browse files
committed
Fix the compiler pass class name
1 parent 8018a75 commit 0b42713

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MonologBundle.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use Symfony\Bundle\MonologBundle\DependencyInjection\Compiler\LoggerChannelPass;
2121
use Symfony\Bundle\MonologBundle\DependencyInjection\Compiler\DebugHandlerPass;
2222
use Symfony\Bundle\MonologBundle\DependencyInjection\Compiler\AddProcessorsPass;
23-
use Symfony\Bundle\MonologBundle\DependencyInjection\Compiler\RemoveEmptyLoggerPass;
23+
use Symfony\Bundle\MonologBundle\DependencyInjection\Compiler\FixEmptyLoggerPass;
2424

2525
/**
2626
* Bundle.
@@ -35,7 +35,7 @@ public function build(ContainerBuilder $container)
3535

3636
$container->addCompilerPass($channelPass = new LoggerChannelPass());
3737
$container->addCompilerPass(new DebugHandlerPass($channelPass));
38-
$container->addCompilerPass(new RemoveEmptyLoggerPass($channelPass));
38+
$container->addCompilerPass(new FixEmptyLoggerPass($channelPass));
3939
$container->addCompilerPass(new AddProcessorsPass());
4040
$container->addCompilerPass(new AddSwiftMailerTransportPass());
4141
}

0 commit comments

Comments
 (0)