diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-03-12 11:23:35 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-03-12 11:23:35 +0100 |
commit | 65bad47e7ecc308cde017d267c914b25b6cf29d9 (patch) | |
tree | fd2575ee770de811486acc6a034d3ee981b3250e /core | |
parent | 75751d51de9185982f43e3d72206f1741939dfda (diff) | |
download | nextcloud-server-65bad47e7ecc308cde017d267c914b25b6cf29d9.tar.gz nextcloud-server-65bad47e7ecc308cde017d267c914b25b6cf29d9.zip |
fix: Suppress psalm errors about deprecated execute method, we have to use it for now
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Background/Job.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Background/Job.php b/core/Command/Background/Job.php index 66cb0ff5cf0..bc03f896361 100644 --- a/core/Command/Background/Job.php +++ b/core/Command/Background/Job.php @@ -84,7 +84,7 @@ class Job extends Command { $output->writeln('<error>Something went wrong when trying to retrieve Job with ID ' . $jobId . ' from database</error>'); return 1; } - /** Calling execute until it is removed, then will switch to start */ + /** @psalm-suppress DeprecatedMethod Calling execute until it is removed, then will switch to start */ $job->execute($this->jobList); $job = $this->jobList->getById($jobId); |