We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81da036 commit 2cd7746Copy full SHA for 2cd7746
src/MongoDBBundle.php
@@ -20,6 +20,7 @@
20
21
namespace MongoDB\Bundle;
22
23
+use MongoDB\Bundle\DependencyInjection\Compiler\DataCollectorPass;
24
use MongoDB\Bundle\DependencyInjection\MongoDBExtension;
25
use Symfony\Component\DependencyInjection\ContainerBuilder;
26
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
@@ -34,6 +35,6 @@ public function getContainerExtension(): ?ExtensionInterface
34
35
36
public function build(ContainerBuilder $container): void
37
{
- $container->addCompilerPass(new DependencyInjection\Compiler\DataCollectorPass());
38
+ $container->addCompilerPass(new DataCollectorPass());
39
}
40
0 commit comments