Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
11 | abstract class AbstractWebTestCase extends WebTestCase |
||
12 | { |
||
13 | /** |
||
14 | * @return ContainerInterface |
||
15 | */ |
||
16 | public static function getParentContainer(): ContainerInterface |
||
17 | { |
||
18 | if (\method_exists(self::class, 'getContainer')) { |
||
19 | return self::getContainer(); |
||
20 | } |
||
21 | |||
22 | return self::$container; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | protected static function getKernelClass(): string |
||
31 | } |
||
32 | } |
||
33 |