1 | <?php |
||
16 | class LoggerSubExtension extends AbstractExtension |
||
17 | { |
||
18 | /** |
||
19 | * @inheritDoc |
||
20 | */ |
||
21 | 1 | public function getConfigKey() |
|
22 | { |
||
23 | 1 | return 'logger'; |
|
24 | } |
||
25 | |||
26 | // @codeCoverageIgnoreStart |
||
27 | // Not possible to cover this because ExtensionManager is a final class |
||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function initialize(ExtensionManager $extensionManager) |
||
34 | // @codeCoverageIgnoreEnd |
||
35 | |||
36 | // @codeCoverageIgnoreStart |
||
37 | // Will be covered by FT |
||
38 | /** |
||
39 | * @inheritDoc |
||
40 | */ |
||
41 | public function configure(ArrayNodeDefinition $builder) |
||
61 | // @codeCoverageIgnoreEnd |
||
62 | |||
63 | /** |
||
64 | * {@inheritdoc} |
||
65 | */ |
||
66 | public function load(ContainerBuilder $container, array $config) |
||
69 | |||
70 | /** |
||
71 | * {@inheritdoc} |
||
72 | */ |
||
73 | 1 | public function process(ContainerBuilder $container) |
|
76 | } |
||
77 |