Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class AppKernel extends Kernel |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * Returns an array of bundles to register. |
||
20 | * |
||
21 | * @return iterable|BundleInterface[] An iterable of bundle instances |
||
22 | */ |
||
23 | public function registerBundles() |
||
24 | { |
||
25 | $bundles = array( |
||
26 | new FrameworkBundle(), |
||
27 | new DoctrineBundle(), |
||
28 | new MakerBundle(), |
||
29 | new FormLayerBundle(), |
||
30 | ); |
||
31 | return $bundles; |
||
32 | } |
||
33 | |||
34 | |||
35 | public function registerContainerConfiguration(LoaderInterface $loader) |
||
38 | } |
||
39 | |||
40 | public function getCacheDir() |
||
45 |