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>
This commit is contained in:
Côme Chilliet
2024-03-12 11:23:35 +01:00
parent 75751d51de
commit 65bad47e7e
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -172,7 +172,7 @@ try {
$memoryBefore = memory_get_usage();
$memoryPeakBefore = memory_get_peak_usage();
/** 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($jobList);
$memoryAfter = memory_get_usage();
@@ -208,7 +208,7 @@ try {
$job = $jobList->getNext();
if ($job != null) {
$logger->debug('WebCron call has selected job with ID ' . strval($job->getId()), ['app' => 'cron']);
/** 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($jobList);
$jobList->setLastJob($job);
}