Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-10-13 12:46:48 +0300
committerJoas Schilling <coding@schilljs.com>2021-10-14 10:57:16 +0300
commit7239b3d560b52ed604484a0a549dd5805e3f21e4 (patch)
treede94505b759a68c014951d27fddb82284a40f740
parent0a812a1c0980d3ca65106875c59e4f0aff6a79a8 (diff)
Bump since version
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--lib/private/BackgroundJob/JobList.php2
-rw-r--r--lib/public/BackgroundJob/IJobList.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/BackgroundJob/JobList.php b/lib/private/BackgroundJob/JobList.php
index fe8e94513e1..9d8d1d836b6 100644
--- a/lib/private/BackgroundJob/JobList.php
+++ b/lib/private/BackgroundJob/JobList.php
@@ -345,7 +345,7 @@ class JobList implements IJobList {
* Reset the $job so it executes on the next trigger
*
* @param IJob $job
- * @since 22.0.0
+ * @since 23.0.0
*/
public function resetBackgroundJob(IJob $job): void {
$query = $this->connection->getQueryBuilder();
diff --git a/lib/public/BackgroundJob/IJobList.php b/lib/public/BackgroundJob/IJobList.php
index b8d6b03c6ea..9f3b485c280 100644
--- a/lib/public/BackgroundJob/IJobList.php
+++ b/lib/public/BackgroundJob/IJobList.php
@@ -100,7 +100,7 @@ interface IJobList {
/**
* @param int $id
* @return array|null
- * @since 22.0.0
+ * @since 23.0.0
*/
public function getDetailsById(int $id): ?array;
@@ -141,7 +141,7 @@ interface IJobList {
* Reset the $job so it executes on the next trigger
*
* @param IJob $job
- * @since 22.0.0
+ * @since 23.0.0
*/
public function resetBackgroundJob(IJob $job): void;
}