1 | <?php |
||
13 | class BehatUtilsExtension implements Extension |
||
14 | { |
||
15 | const EXTENSION_CONFIG_KEY = 'behat_utils'; |
||
16 | const CONTAINER_KEY_BASE = 'behat_utils_extension'; |
||
17 | |||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | */ |
||
21 | 1 | public function getConfigKey() |
|
25 | |||
26 | // @codeCoverageIgnoreStart |
||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function initialize(ExtensionManager $extensionManager) |
||
33 | // @codeCoverageIgnoreEnd |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | 1 | public function configure(ArrayNodeDefinition $builder) |
|
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | 4 | public function load(ContainerBuilder $container, array $config) |
|
63 | |||
64 | /** |
||
65 | * {@inheritdoc} |
||
66 | */ |
||
67 | 1 | public function process(ContainerBuilder $container) |
|
70 | |||
71 | /** |
||
72 | * @param ContainerBuilder $container |
||
73 | * @param array $config |
||
74 | * @param string $baseId |
||
75 | */ |
||
76 | 4 | protected function bindConfigToContainer( |
|
93 | } |
||
94 |