File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 1010
1111class Plugin implements PluginInterface, EventSubscriberInterface
1212{
13- public function activate (Composer $ composer , IOInterface $ io ): void {}
13+ public function activate (Composer $ composer , IOInterface $ io ): void
14+ {
15+ $ io ->write ('This is the way. ' );
16+ }
1417
15- public function deactivate (Composer $ composer , IOInterface $ io ): void {}
18+ public function deactivate (Composer $ composer , IOInterface $ io ): void
19+ {
20+ $ io ->write ('May the Force be with you. ' );
21+ }
1622
17- public function uninstall (Composer $ composer , IOInterface $ io ): void {}
23+ public function uninstall (Composer $ composer , IOInterface $ io ): void
24+ {
25+ $ io ->write ('I \'ll see you again. I promise ©️ ' );
26+ }
1827
1928 public static function getSubscribedEvents (): array
2029 {
You can’t perform that action at this time.
0 commit comments