1 | <?php |
||
20 | class Behat3ZendFramework3Extension implements |
||
21 | Extension |
||
22 | { |
||
23 | const SERVICE_CONTAINER_NAME = "behat3_zendframework3_extension"; |
||
24 | const APPLICATION_CONTAINER_NAME = "zendframework3.application"; |
||
25 | const ARGUMENT_RESOLVER_CONTAINER_NAME = "zendframework3.argument_resolver"; |
||
26 | |||
27 | const BASE_PATH_PARAMETER_NAME = "paths.base"; |
||
28 | |||
29 | const CONFIGURATION_PATH_ARGUMENT_NAME = "configuration_path"; |
||
30 | const CONFIGURATION_PATH_DEFAULT_ARGUMENT_VALUE = "/config/application.config.php"; |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public function configure( |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | 1 | public function getConfigKey(): string |
|
56 | |||
57 | /** |
||
58 | * {@inheritdoc} |
||
59 | */ |
||
60 | public function initialize( |
||
64 | |||
65 | /** |
||
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | public function load( |
||
75 | |||
76 | /** |
||
77 | * @param ContainerBuilder $container |
||
78 | * @param array $config |
||
79 | * @return void |
||
80 | */ |
||
81 | protected function loadInitializer( |
||
93 | |||
94 | /** |
||
95 | * @param string $basePath |
||
96 | * @param string $configurationFilePath |
||
97 | * @return string |
||
98 | */ |
||
99 | protected function mergeConfigurationFilePath( |
||
105 | |||
106 | /** |
||
107 | * @param ContainerBuilder $container |
||
108 | * @return void |
||
109 | */ |
||
110 | protected function loadArgumentResolver( |
||
123 | |||
124 | /** |
||
125 | * {@inheritdoc} |
||
126 | */ |
||
127 | public function process( |
||
131 | } |
||
132 |