diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-10-21 09:38:48 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2022-11-18 22:24:59 +0100 |
commit | df8ed46cce97025cc70564a9b185e8618b32559d (patch) | |
tree | 0584753ccd96d761fefdd82175ec8c3ba6499342 /apps | |
parent | 9bdf4c2254a2334558c3e543840b659e6eee48c8 (diff) | |
download | nextcloud-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>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/theming/lib/Migration/InitBackgroundImagesMigration.php | 2 |
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]); } } |