summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
}