0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-15 08:45:21 +00:00

fix const visibility

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2022-10-21 10:03:40 +02:00
parent df8ed46cce
commit 0297a03698
No known key found for this signature in database
GPG key ID: 7424F1874854DF23

View file

@ -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';