1 | <?php |
||
11 | class LoggerSubExtension implements Extension |
||
12 | { |
||
13 | /** |
||
14 | * @inheritDoc |
||
15 | */ |
||
16 | 1 | public function getConfigKey() |
|
20 | |||
21 | // @codeCoverageIgnoreStart |
||
22 | // Not possible to cover this because ExtensionManager is a final class |
||
23 | // Will be covered by FT |
||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function initialize(ExtensionManager $extensionManager) |
||
30 | // @codeCoverageIgnoreEnd |
||
31 | |||
32 | // @codeCoverageIgnoreStart |
||
33 | // Will be covered by FT |
||
34 | /** |
||
35 | * @inheritDoc |
||
36 | */ |
||
37 | public function configure(ArrayNodeDefinition $builder) |
||
57 | // @codeCoverageIgnoreEnd |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | 2 | public function load(ContainerBuilder $container, array $config) |
|
63 | { |
||
64 | 2 | } |
|
65 | |||
66 | /** |
||
67 | * {@inheritdoc} |
||
68 | */ |
||
69 | 1 | public function process(ContainerBuilder $container) |
|
72 | } |
||
73 |