Bump since version

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2021-10-13 11:46:48 +02:00
parent 0a812a1c09
commit 7239b3d560
No known key found for this signature in database
GPG key ID: 7076EA9751AACDDA
2 changed files with 3 additions and 3 deletions

View file

@ -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();

View file

@ -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;
}