Skip to content

Commit 2cd7746

Browse files
committed
fix
1 parent 81da036 commit 2cd7746

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/MongoDBBundle.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
namespace MongoDB\Bundle;
2222

23+
use MongoDB\Bundle\DependencyInjection\Compiler\DataCollectorPass;
2324
use MongoDB\Bundle\DependencyInjection\MongoDBExtension;
2425
use Symfony\Component\DependencyInjection\ContainerBuilder;
2526
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
@@ -34,6 +35,6 @@ public function getContainerExtension(): ?ExtensionInterface
3435

3536
public function build(ContainerBuilder $container): void
3637
{
37-
$container->addCompilerPass(new DependencyInjection\Compiler\DataCollectorPass());
38+
$container->addCompilerPass(new DataCollectorPass());
3839
}
3940
}

0 commit comments

Comments
 (0)