Fix error in RepeatedTask

This commit is contained in:
Joop Schilder 2020-12-14 16:08:14 +01:00
parent a5ef2de3e4
commit 3e4d4343be
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ abstract class Task
public array $arguments;
protected ?TimerInterface $timer = null;
public function __construct(callable $callable, ...$arguments)
public function __construct(callable $callable, array $arguments)
{
$this->callable = $callable;
$this->arguments = $arguments;