You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/tests/lib/BackgroundJob/DummyJob.php

37 lines
634 B

<?php
/**
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Test\BackgroundJob;
use OCP\BackgroundJob\IJob;
use OCP\BackgroundJob\IJobList;
/**
* Dummy Job fo tests only
*/
class DummyJob implements IJob {
public function start(IJobList $jobList): void {
}
public function setId(string $id): void {
}
public function setLastRun(int $lastRun): void {
}
public function setArgument(mixed $argument): void {
}
public function getId(): string {
}
public function getLastRun(): int {
}
public function getArgument(): mixed {
}
}