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