Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
42 | 2 | public static function regeneration(Event $composerEvent): void |
|
43 | { |
||
44 | 2 | $composerEvent->getIO()->write('<info>drupol/composer-packages:</info> Regenerating classes...'); |
|
45 | |||
46 | 2 | (new ClassGenerator($composerEvent))->regenerateClasses(); |
|
47 | |||
48 | 2 | $composerEvent->getIO()->write('<info>drupol/composer-packages:</info> Done.'); |
|
49 | 2 | } |
|
51 |