Skip to content

Commit

Permalink
fixup! feat(backgroundjob): Schedule job after <timestamp>
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
  • Loading branch information
ChristophWurst committed Sep 28, 2023
1 parent 8c7d090 commit e34a344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/lib/BackgroundJob/DummyJobList.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function add($job, $argument = null, int $firstCheck = null): void {
}

public function scheduleAfter(string $job, int $runAfter, $argument = null): void {
$this->add($job, $argument);
$this->add($job, $argument, $runAfter);
}

/**
Expand Down

0 comments on commit e34a344

Please sign in to comment.