Skip to content

Commit

Permalink
fix: conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
solracsf committed Oct 18, 2024
1 parent 6ff0916 commit cf62a82
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions apps/dav/lib/Migration/RefreshWebcalJobRegistrar.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,21 @@

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;
}

/**
Expand Down

0 comments on commit cf62a82

Please sign in to comment.