aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2024-03-12 11:23:35 +0100
committerCôme Chilliet <come.chilliet@nextcloud.com>2024-03-12 11:23:35 +0100
commit65bad47e7ecc308cde017d267c914b25b6cf29d9 (patch)
treefd2575ee770de811486acc6a034d3ee981b3250e /core
parent75751d51de9185982f43e3d72206f1741939dfda (diff)
downloadnextcloud-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.php2
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);