From b6f3410a7c693dcafe4ad438a7a992ef92159bae Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Wed, 20 May 2020 03:30:48 +0100 Subject: [PATCH] Explicit visibility to const --- src/MergePlugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MergePlugin.php b/src/MergePlugin.php index f7f7087..e81415f 100644 --- a/src/MergePlugin.php +++ b/src/MergePlugin.php @@ -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