1 | <?php |
||
11 | final class AppKernelWithAlias extends Kernel |
||
12 | { |
||
13 | /** |
||
14 | * {@inheritdoc} |
||
15 | */ |
||
16 | public function registerBundles() |
||
17 | { |
||
18 | return [ |
||
19 | new FrameworkBundle(), |
||
20 | new SymplifyControllerAutowireBundle(), |
||
21 | new AliasingBundle(), |
||
22 | ]; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function registerContainerConfiguration(LoaderInterface $loader) |
||
29 | { |
||
30 | $loader->load(__DIR__.'/Resources/config/config.yml'); |
||
31 | } |
||
32 | } |
||
33 |