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:
parent
df8ed46cce
commit
0297a03698
1 changed files with 2 additions and 2 deletions
|
@ -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';
|
||||
|
||||
|
|
Loading…
Reference in a new issue