1 | <?php |
||
14 | class BehatUtilsExtension implements Extension |
||
15 | { |
||
16 | const EXTENSION_CONFIG_KEY = 'behat_utils'; |
||
17 | const CONTAINER_KEY_BASE = 'behat_utils_extension'; |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 1 | public function getConfigKey() |
|
26 | |||
27 | // @codeCoverageIgnoreStart |
||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function initialize(ExtensionManager $extensionManager) |
||
34 | // @codeCoverageIgnoreEnd |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | 2 | public function configure(ArrayNodeDefinition $builder) |
|
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | 5 | public function load(ContainerBuilder $container, array $config) |
|
68 | |||
69 | /** |
||
70 | * {@inheritdoc} |
||
71 | */ |
||
72 | 1 | public function process(ContainerBuilder $container) |
|
75 | |||
76 | /** |
||
77 | * @param ContainerBuilder $container |
||
78 | * @param array $config |
||
79 | * @param string $baseId |
||
80 | */ |
||
81 | 5 | protected function bindConfigToContainer( |
|
98 | } |
||
99 |