From 0297a03698485bc9b95ed33c4bb2d73f05880fa0 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Oct 2022 10:03:40 +0200 Subject: [PATCH] fix const visibility Signed-off-by: Arthur Schiwon --- apps/theming/lib/Jobs/MigrateBackgroundImages.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/theming/lib/Jobs/MigrateBackgroundImages.php b/apps/theming/lib/Jobs/MigrateBackgroundImages.php index 69374aa694a..536dde943b1 100644 --- a/apps/theming/lib/Jobs/MigrateBackgroundImages.php +++ b/apps/theming/lib/Jobs/MigrateBackgroundImages.php @@ -41,8 +41,8 @@ use Psr\Log\LoggerInterface; class MigrateBackgroundImages extends QueuedJob { public const TIME_SENSITIVE = 0; - protected const STAGE_PREPARE = 'prepare'; - protected const STAGE_EXECUTE = 'execute'; + public const STAGE_PREPARE = 'prepare'; + public const STAGE_EXECUTE = 'execute'; // will be saved in appdata/theming/global/ protected const STATE_FILE_NAME = '25_dashboard_to_theming_migration_users.json';