1 | <?php |
||
12 | class Kernel extends KernelForTest |
||
13 | { |
||
14 | /** @var array */ |
||
15 | protected $registrableBundles = array(); |
||
16 | |||
17 | /** @var \Closure */ |
||
18 | protected $configCallback; |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function registerBundles() |
||
34 | |||
35 | /** |
||
36 | * @param array $bundles |
||
37 | * @return $this |
||
38 | */ |
||
39 | public function setRegistrableBundles($bundles) |
||
45 | |||
46 | /** |
||
47 | * @param \Closure $callback |
||
48 | * @return $this |
||
49 | */ |
||
50 | public function setConfigCallback(\Closure $callback) |
||
56 | |||
57 | /** |
||
58 | * {@inheritdoc} |
||
59 | */ |
||
60 | public function registerContainerConfiguration(LoaderInterface $loader) |
||
67 | } |
||
68 |