Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 75% |
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 \Composer\Script\Event $composerEvent |
||
36 | * |
||
37 | * @throws \ReflectionException |
||
38 | * @throws \Twig\Error\LoaderError |
||
39 | * @throws \Twig\Error\RuntimeError |
||
40 | * @throws \Twig\Error\SyntaxError |
||
41 | */ |
||
42 | 2 | public static function regeneration(Event $composerEvent): void |
|
49 | 2 | } |
|
50 | } |
||
51 |