aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2022-10-21 09:38:48 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2022-11-18 22:24:59 +0100
commitdf8ed46cce97025cc70564a9b185e8618b32559d (patch)
tree0584753ccd96d761fefdd82175ec8c3ba6499342
parent9bdf4c2254a2334558c3e543840b659e6eee48c8 (diff)
downloadnextcloud-server-df8ed46cce97025cc70564a9b185e8618b32559d.tar.gz
nextcloud-server-df8ed46cce97025cc70564a9b185e8618b32559d.zip
use const
Co-authored-by: Pytal <24800714+Pytal@users.noreply.github.com> Signed-off-by: blizzz <blizzz@arthur-schiwon.de>
-rw-r--r--apps/theming/lib/Migration/InitBackgroundImagesMigration.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Migration/InitBackgroundImagesMigration.php b/apps/theming/lib/Migration/InitBackgroundImagesMigration.php
index 04c6a84d19a..ff8783196ac 100644
--- a/apps/theming/lib/Migration/InitBackgroundImagesMigration.php
+++ b/apps/theming/lib/Migration/InitBackgroundImagesMigration.php
@@ -43,6 +43,6 @@ class InitBackgroundImagesMigration implements \OCP\Migration\IRepairStep {
}
public function run(IOutput $output) {
- $this->jobList->add(MigrateBackgroundImages::class, ['stage' => 'prepare']);
+ $this->jobList->add(MigrateBackgroundImages::class, ['stage' => MigrateBackgroundImages::STAGE_PREPARE]);
}
}