Просмотр исходного кода

[FrameworkBundle] fix addCompilerPass typo

Igor Wiedler 14 лет назад
Родитель
Сommit
b9cd2f1f06
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php

@@ -81,6 +81,6 @@ class FrameworkBundle extends Bundle
         $container->addCompilerPass(new AddClassesToAutoloadMapPass());
         $container->addCompilerPass(new TranslatorPass());
         $container->addCompilerPass(new AddCacheWarmerPass());
-        $container->adDcompilerPass(new ContainerBuilderDebugDumpPass(), PassConfig::TYPE_BEFORE_REMOVING);
+        $container->addCompilerPass(new ContainerBuilderDebugDumpPass(), PassConfig::TYPE_BEFORE_REMOVING);
     }
 }