Fix missing parent constructor call in DAV reminder job

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2019-08-26 16:08:10 +02:00
parent b1a0d464ba
commit 9ff9803da4
No known key found for this signature in database
GPG key ID: CC42AC2A7F0E56D8

View file

@ -66,6 +66,7 @@ class BuildReminderIndexBackgroundJob extends QueuedJob {
ILogger $logger,
IJobList $jobList,
ITimeFactory $timeFactory) {
parent::__construct($timeFactory);
$this->db = $db;
$this->reminderService = $reminderService;
$this->logger = $logger;