Total Complexity | 4 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class TestingKernel extends Kernel |
||
12 | { |
||
13 | /** @var array */ |
||
14 | private $config; |
||
15 | |||
16 | public function __construct(array $config = []) |
||
17 | { |
||
18 | $this->config = $config; |
||
19 | parent::__construct('test', true); |
||
20 | } |
||
21 | |||
22 | public function registerBundles() |
||
23 | { |
||
24 | return [ |
||
25 | new MetroMarketsFFBundle(), |
||
26 | ]; |
||
27 | } |
||
28 | |||
29 | public function registerContainerConfiguration(LoaderInterface $loader) |
||
33 | }); |
||
34 | } |
||
35 | |||
36 | public function getCacheDir() |
||
40 | } |
||
41 | } |