From 8992ba85c75d0f2de71b85e6d521f45a68f55e6f Mon Sep 17 00:00:00 2001 From: blizzz Date: Fri, 21 Oct 2022 09:26:17 +0200 Subject: [PATCH] use const Co-authored-by: Pytal <24800714+Pytal@users.noreply.github.com> Signed-off-by: blizzz --- apps/theming/lib/Jobs/MigrateBackgroundImages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/theming/lib/Jobs/MigrateBackgroundImages.php b/apps/theming/lib/Jobs/MigrateBackgroundImages.php index b0e21de4909..69374aa694a 100644 --- a/apps/theming/lib/Jobs/MigrateBackgroundImages.php +++ b/apps/theming/lib/Jobs/MigrateBackgroundImages.php @@ -71,7 +71,7 @@ class MigrateBackgroundImages extends QueuedJob { protected function run($argument): void { if (!isset($argument['stage'])) { // not executed in 25.0.0?! - $argument['stage'] = 'prepare'; + $argument['stage'] = self::STAGE_PREPARE; } switch ($argument['stage']) {