Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/private/BackgroundJob/JobList.php
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
$update->setParameter('jobid', $row['id']);
$update->executeStatement();

return $this->getNext($onlyTimeSensitive);
return $this->getNext($onlyTimeSensitive, $jobClasses);

Check failure on line 225 in lib/private/BackgroundJob/JobList.php

View workflow job for this annotation

GitHub Actions / static-code-analysis

TooManyArguments

lib/private/BackgroundJob/JobList.php:225:19: TooManyArguments: Too many arguments for method OC\BackgroundJob\JobList::getnext - saw 2 (see https://psalm.dev/026)

Check failure on line 225 in lib/private/BackgroundJob/JobList.php

View workflow job for this annotation

GitHub Actions / static-code-analysis

UndefinedVariable

lib/private/BackgroundJob/JobList.php:225:47: UndefinedVariable: Cannot find referenced variable $jobClasses (see https://psalm.dev/024)

Check failure

Code scanning / Psalm

TooManyArguments Error

Too many arguments for method OC\BackgroundJob\JobList::getnext - saw 2

Check failure

Code scanning / Psalm

UndefinedVariable Error

Cannot find referenced variable $jobClasses
}

$update = $this->connection->getQueryBuilder();
Expand Down
Loading