Skip to content

Commit

Permalink
fix: Properly call parent constructor for remote activity job
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Knorr <[email protected]>

[skip ci]
  • Loading branch information
juliusknorr authored and backportbot[bot] committed Oct 14, 2024
1 parent f9105e3 commit c9c99c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/BackgroundJob/RemoteActivity.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ class RemoteActivity extends QueuedJob {
/** @var ICloudIdManager */
protected $cloudIdManager;

public function __construct(IClientService $clientService, ICloudIdManager $cloudIdManager) {
public function __construct(ITimeFactory $timeFactory, IClientService $clientService, ICloudIdManager $cloudIdManager) {
parent::__construct($timeFactory);
$this->clientService = $clientService;
$this->cloudIdManager = $cloudIdManager;
}
Expand Down

0 comments on commit c9c99c5

Please sign in to comment.