1234567891011121314151617181920212223 |
- <?php
- use Symfony\Component\HttpKernel\Kernel;
- use Symfony\Component\Config\Loader\LoaderInterface;
- class AppKernel extends Kernel
- {
- public function registerBundles()
- {
- $bundles = array(
- new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
- new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
- new Skamander\BenchmarkBundle\SkamanderBenchmarkBundle(),
- );
- return $bundles;
- }
- public function registerContainerConfiguration(LoaderInterface $loader)
- {
- $loader->load(__DIR__.'/config/config.yml');
- }
- }
|