| 1 | <?php |
||
| 8 | abstract class AbstractExtension implements Extension |
||
| 9 | { |
||
| 10 | const BASE_CONTAINER_ID = 'behat3_symfony_extension'; |
||
| 11 | const KERNEL_SERVICE_ID = 'behat3_symfony_extension.kernel'; |
||
| 12 | const TEST_CLIENT_SERVICE_ID = 'behat3_symfony_extension.test.client'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param string $key |
||
| 16 | * |
||
| 17 | * @return string |
||
| 18 | */ |
||
| 19 | protected function buildContainerId($key) |
||
| 27 | } |
||
| 28 |