| 1 | <?php |
||
| 11 | class AppKernel extends Kernel |
||
| 12 | { |
||
| 13 | public function registerBundles() |
||
| 14 | { |
||
| 15 | $bundles = array( |
||
| 16 | new Symfony\Bundle\FrameworkBundle\FrameworkBundle(), |
||
| 17 | new Symfony\Bundle\TwigBundle\TwigBundle(), |
||
| 18 | new Sleepness\UberTranslationBundle\SleepnessUberTranslationBundle(), |
||
| 19 | new Sleepness\UberTranslationBundle\Tests\Fixtures\TestApp\TestBundle\TestBundle(), // required for testing environment |
||
| 20 | ); |
||
| 21 | |||
| 22 | return $bundles; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function registerContainerConfiguration(LoaderInterface $loader) |
||
| 29 | } |
||
| 30 |