diff options
Diffstat (limited to 'app/AppKernel.php')
-rw-r--r-- | app/AppKernel.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/AppKernel.php b/app/AppKernel.php index d2aa8d1c..d97842f9 100644 --- a/app/AppKernel.php +++ b/app/AppKernel.php | |||
@@ -35,7 +35,7 @@ class AppKernel extends Kernel | |||
35 | new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(), | 35 | new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(), |
36 | ); | 36 | ); |
37 | 37 | ||
38 | if (in_array($this->getEnvironment(), array('dev', 'test'))) { | 38 | if (in_array($this->getEnvironment(), array('dev', 'test'), true)) { |
39 | $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle(); | 39 | $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle(); |
40 | $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); | 40 | $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); |
41 | $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle(); | 41 | $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle(); |
@@ -48,6 +48,6 @@ class AppKernel extends Kernel | |||
48 | 48 | ||
49 | public function registerContainerConfiguration(LoaderInterface $loader) | 49 | public function registerContainerConfiguration(LoaderInterface $loader) |
50 | { | 50 | { |
51 | $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml'); | 51 | $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml'); |
52 | } | 52 | } |
53 | } | 53 | } |