| 1 | <?php |
||
| 8 | class AppKernel extends Kernel |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @return array |
||
| 12 | */ |
||
| 13 | public function registerBundles() |
||
| 14 | { |
||
| 15 | $bundles = array( |
||
| 16 | new \Symfony\Bundle\FrameworkBundle\FrameworkBundle(), |
||
| 17 | new \Liip\ImagineBundle\LiipImagineBundle(), |
||
| 18 | ); |
||
| 19 | |||
| 20 | return $bundles; |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function getCacheDir() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | public function getLogDir() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param \Symfony\Component\Config\Loader\LoaderInterface $loader |
||
| 41 | */ |
||
| 42 | public function registerContainerConfiguration(LoaderInterface $loader) |
||
| 46 | } |
||
| 47 |