| 1 | <?php |
||
| 10 | class TestKernel extends Kernel implements CompilerPassInterface |
||
| 11 | { |
||
| 12 | private $configurationFilename; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Defines the configuration filename. |
||
| 16 | * |
||
| 17 | * @param string $filename |
||
| 18 | */ |
||
| 19 | public function setConfigurationFilename($filename) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | public function registerBundles() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function registerContainerConfiguration(LoaderInterface $loader) |
||
| 42 | |||
| 43 | protected function prepareContainer(ContainerBuilder $container) |
||
| 49 | |||
| 50 | public function process(ContainerBuilder $container) |
||
| 59 | } |
||
| 60 |