Skip to content

Commit

Permalink
Explicit visibility to const
Browse files Browse the repository at this point in the history
  • Loading branch information
reedy committed May 20, 2020
1 parent 18dbae0 commit b6f3410
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MergePlugin.php
Expand Up @@ -86,12 +86,12 @@ class MergePlugin implements PluginInterface, EventSubscriberInterface
/**
* Offical package name
*/
const PACKAGE_NAME = 'wikimedia/composer-merge-plugin';
public const PACKAGE_NAME = 'wikimedia/composer-merge-plugin';

/**
* Priority that plugin uses to register callbacks.
*/
const CALLBACK_PRIORITY = 50000;
private const CALLBACK_PRIORITY = 50000;

/**
* @var Composer $composer
Expand Down

0 comments on commit b6f3410

Please sign in to comment.