| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 18 | abstract class AbstractWithContainerAndEnabledExtensionsEvent extends AbstractWithEnabledExtensionsEvent |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var ContainerInterface |
||
| 22 | */ |
||
| 23 | private $container; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param ContainerInterface $container |
||
| 27 | * @param string[] $enabledModules |
||
| 28 | * @param string[] $enabledThemes |
||
| 29 | */ |
||
| 30 | 15 | public function __construct(bool $configurationChanged, ContainerInterface $container, array $enabledModules, array $enabledThemes) |
|
| 31 | { |
||
| 32 | 15 | parent::__construct($configurationChanged, $enabledModules, $enabledThemes); |
|
| 33 | |||
| 34 | 15 | $this->container = $container; |
|
| 35 | 15 | } |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @return ContainerInterface |
||
| 39 | */ |
||
| 40 | 11 | public function getContainer(): ContainerInterface |
|
| 43 | } |
||
| 44 | } |
||
| 45 |