aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/dav/lib/Migration/RefreshWebcalJobRegistrar.php19
1 files changed, 15 insertions, 4 deletions
diff --git a/apps/dav/lib/Migration/RefreshWebcalJobRegistrar.php b/apps/dav/lib/Migration/RefreshWebcalJobRegistrar.php
index 235a3a78395..3d6426e4460 100644
--- a/apps/dav/lib/Migration/RefreshWebcalJobRegistrar.php
+++ b/apps/dav/lib/Migration/RefreshWebcalJobRegistrar.php
@@ -16,10 +16,21 @@ use OCP\Migration\IRepairStep;
class RefreshWebcalJobRegistrar implements IRepairStep {
- public function __construct(
- private IDBConnection $connection,
- private IJobList $jobList,
- ) {
+ /** @var IDBConnection */
+ private $connection;
+
+ /** @var IJobList */
+ private $jobList;
+
+ /**
+ * FixBirthdayCalendarComponent constructor.
+ *
+ * @param IDBConnection $connection
+ * @param IJobList $jobList
+ */
+ public function __construct(IDBConnection $connection, IJobList $jobList) {
+ $this->connection = $connection;
+ $this->jobList = $jobList;
}
/**