Skip to content

Commit

Permalink
Fix typings on test class
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdonohoo committed Sep 13, 2023
1 parent 9b4e267 commit a3cdf9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Certification/Lti13CertificationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ public function __construct($registration, $deployment)
$this->deployments[$deployment->getDeploymentId()] = $deployment;
}

public function findRegistrationByIssuer($iss, $client_id = null)
public function findRegistrationByIssuer($iss, $client_id = null): ?LtiRegistration
{
return $this->registrations[$iss];
}

public function findDeployment($iss, $deployment_id, $client_id = null)
public function findDeployment($iss, $deployment_id, $client_id = null): ?LtiDeployment
{
return $this->deployments[$iss];
}
Expand Down

0 comments on commit a3cdf9b

Please sign in to comment.