| 1 | <?php |
||
| 6 | class AppKernel extends Kernel |
||
| 7 | { |
||
| 8 | public function registerBundles() |
||
| 9 | { |
||
| 10 | return array( |
||
| 11 | new Symfony\Bundle\FrameworkBundle\FrameworkBundle(), |
||
| 12 | new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(), |
||
| 13 | new Tarioch\PhealBundle\TariochPhealBundle(), |
||
| 14 | new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(), |
||
| 15 | new Liip\FunctionalTestBundle\LiipFunctionalTestBundle(), |
||
| 16 | new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(), |
||
| 17 | |||
| 18 | new Tarioch\EveapiFetcherBundle\TariochEveapiFetcherBundle(), |
||
| 19 | ); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function registerContainerConfiguration(LoaderInterface $loader) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function getCacheDir() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function getLogDir() |
||
| 42 | } |
||
| 43 |