From c1e0c3edbaac249e397e75119cce2b749e6fcefc Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 27 May 2010 16:52:16 +0200 Subject: [PATCH] [PropelBundle] added automatic bootstrapping of Propel in the boot --- src/Symfony/Framework/PropelBundle/Bundle.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Symfony/Framework/PropelBundle/Bundle.php b/src/Symfony/Framework/PropelBundle/Bundle.php index 21cf62f1ba..b6e33d42d0 100644 --- a/src/Symfony/Framework/PropelBundle/Bundle.php +++ b/src/Symfony/Framework/PropelBundle/Bundle.php @@ -43,5 +43,7 @@ class Bundle extends BaseBundle $autoloader = \PropelAutoloader::getInstance(); $autoloader->addClassPaths(include($autoload)); $autoloader->register(); + + $container->getPropelService(); } }