Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 70% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | final class Plugin implements EventSubscriberInterface, PluginInterface |
||
18 | { |
||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | public function activate(Composer $composer, IOInterface $io): void |
||
23 | { |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | 1 | public static function getSubscribedEvents(): array |
|
32 | } |
||
33 | |||
34 | /** |
||
35 | * @param Event $composerEvent |
||
36 | * |
||
37 | * @throws \ReflectionException |
||
38 | */ |
||
39 | 2 | public static function regeneration(Event $composerEvent): void |
|
53 |