diff options
author | Git'Fellow <12234510+solracsf@users.noreply.github.com> | 2024-10-18 16:09:21 +0200 |
---|---|---|
committer | Git'Fellow <12234510+solracsf@users.noreply.github.com> | 2024-10-18 16:09:21 +0200 |
commit | cf62a82e6592e756ec6306dccd4da8dec4217ae1 (patch) | |
tree | 07afc9bcac26d338bd7ded82b1265418e83fac80 | |
parent | 6ff0916cb31770198c5948831c3a9374d38fbd6f (diff) | |
download | nextcloud-server-dbQueriesExecStmt3.tar.gz nextcloud-server-dbQueriesExecStmt3.zip |
fix: conflictdbQueriesExecStmt3
-rw-r--r-- | apps/dav/lib/Migration/RefreshWebcalJobRegistrar.php | 19 |
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; } /** |