Skip to content

Commit d76c40e

Browse files
fix(plugin): Add new abstract methods
Mandatory since Composer 2.0
1 parent b46b052 commit d76c40e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/ThemeInstallerPlugin.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,20 @@ public function activate(Composer $composer, IOInterface $io)
1717

1818
$composer->getInstallationManager()->addInstaller($installer);
1919
}
20+
21+
/**
22+
* {@inheritdoc}
23+
*/
24+
public function deactivate(Composer $composer, IOInterface $io)
25+
{
26+
//
27+
}
28+
29+
/**
30+
* {@inheritdoc}
31+
*/
32+
public function uninstall(Composer $composer, IOInterface $io)
33+
{
34+
//
35+
}
2036
}

0 commit comments

Comments
 (0)