From b85212839f4721f038b0bcf7e3c1b242e1e44fc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20S=C5=82awik?= Date: Wed, 14 Aug 2024 10:34:20 +0200 Subject: [PATCH] Fix command const visibility bug --- src/Console/ImportFromRemoteCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/ImportFromRemoteCommand.php b/src/Console/ImportFromRemoteCommand.php index a373143..9a609f8 100644 --- a/src/Console/ImportFromRemoteCommand.php +++ b/src/Console/ImportFromRemoteCommand.php @@ -24,7 +24,7 @@ class ImportFromRemoteCommand extends Command private CONST VALUE_CONFIG_PRESERVE = 'preserve-local'; private CONST VALUE_CONFIG_MERGE = 'merge'; - private const SUCCESS = 1; + public const SUCCESS = 1; public function __construct( private DbFacade $dbFacade,