Skip to content

Commit

Permalink
Dropping Interface suffix from newly introduced plugin polyfill
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Apr 6, 2020
1 parent 0a0430f commit 4216798
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -12,7 +12,7 @@
* @internal do not rely on this: it is only here to declare the composer V2 API explicitly, even
* in composer V1 context.
*/
interface ComposerV2PluginInterface extends PluginInterface
interface ComposerV2Plugin extends PluginInterface
{
public function deactivate(Composer $composer, IOInterface $io) : void;

Expand Down
2 changes: 1 addition & 1 deletion src/PackageVersions/Installer.php
Expand Up @@ -28,7 +28,7 @@
use function uniqid;
use function var_export;

final class Installer implements ComposerV2PluginInterface, EventSubscriberInterface
final class Installer implements ComposerV2Plugin, EventSubscriberInterface
{
private static string $generatedClassTemplate = <<<'PHP'
<?php
Expand Down

0 comments on commit 4216798

Please sign in to comment.