@@ -15,16 +15,16 @@ |
||
15 | 15 | use OCP\Migration\IRepairStep; |
16 | 16 | |
17 | 17 | class RegisterUpdateCalendarResourcesRoomBackgroundJob implements IRepairStep { |
18 | - public function __construct( |
|
19 | - private readonly IJobList $jobList, |
|
20 | - ) { |
|
21 | - } |
|
18 | + public function __construct( |
|
19 | + private readonly IJobList $jobList, |
|
20 | + ) { |
|
21 | + } |
|
22 | 22 | |
23 | - public function getName() { |
|
24 | - return 'Register a background job to update rooms and resources'; |
|
25 | - } |
|
23 | + public function getName() { |
|
24 | + return 'Register a background job to update rooms and resources'; |
|
25 | + } |
|
26 | 26 | |
27 | - public function run(IOutput $output) { |
|
28 | - $this->jobList->add(UpdateCalendarResourcesRoomsBackgroundJob::class); |
|
29 | - } |
|
27 | + public function run(IOutput $output) { |
|
28 | + $this->jobList->add(UpdateCalendarResourcesRoomsBackgroundJob::class); |
|
29 | + } |
|
30 | 30 | } |