summaryrefslogtreecommitdiffstats
path: root/apps/theming/lib
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2022-10-21 10:03:40 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2022-11-18 22:24:59 +0100
commit0297a03698485bc9b95ed33c4bb2d73f05880fa0 (patch)
tree7fc9f1a0b16219ec3df094efc218790f07f2f905 /apps/theming/lib
parentdf8ed46cce97025cc70564a9b185e8618b32559d (diff)
downloadnextcloud-server-0297a03698485bc9b95ed33c4bb2d73f05880fa0.tar.gz
nextcloud-server-0297a03698485bc9b95ed33c4bb2d73f05880fa0.zip
fix const visibility
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r--apps/theming/lib/Jobs/MigrateBackgroundImages.php4
1 files 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';