Merge pull request #23710 from nextcloud/backport/23701/stable20
[stable20] Make sure the function signatures of the backgroundjob match
This commit is contained in:
commit
bc8740a46a
|
@ -118,7 +118,7 @@ class GetSharedSecret extends Job {
|
||||||
* @param JobList $jobList
|
* @param JobList $jobList
|
||||||
* @param ILogger|null $logger
|
* @param ILogger|null $logger
|
||||||
*/
|
*/
|
||||||
public function execute($jobList, ILogger $logger = null) {
|
public function execute(IJobList $jobList, ILogger $logger = null) {
|
||||||
$target = $this->argument['url'];
|
$target = $this->argument['url'];
|
||||||
// only execute if target is still in the list of trusted domains
|
// only execute if target is still in the list of trusted domains
|
||||||
if ($this->trustedServers->isTrustedServer($target)) {
|
if ($this->trustedServers->isTrustedServer($target)) {
|
||||||
|
|
|
@ -117,7 +117,7 @@ class RequestSharedSecret extends Job {
|
||||||
* @param JobList $jobList
|
* @param JobList $jobList
|
||||||
* @param ILogger|null $logger
|
* @param ILogger|null $logger
|
||||||
*/
|
*/
|
||||||
public function execute($jobList, ILogger $logger = null) {
|
public function execute(IJobList $jobList, ILogger $logger = null) {
|
||||||
$target = $this->argument['url'];
|
$target = $this->argument['url'];
|
||||||
// only execute if target is still in the list of trusted domains
|
// only execute if target is still in the list of trusted domains
|
||||||
if ($this->trustedServers->isTrustedServer($target)) {
|
if ($this->trustedServers->isTrustedServer($target)) {
|
||||||
|
|
Loading…
Reference in New Issue