From 7239b3d560b52ed604484a0a549dd5805e3f21e4 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 13 Oct 2021 11:46:48 +0200 Subject: [PATCH] Bump since version Signed-off-by: Joas Schilling --- lib/private/BackgroundJob/JobList.php | 2 +- lib/public/BackgroundJob/IJobList.php | 4 ++-- 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; }