Skip to content

Commit

Permalink
Fix parameter type
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Oct 23, 2024
1 parent 6e41286 commit 48340e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/IdP/ADFS.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ class ADFS
/**
* @param \Symfony\Component\HttpFoundation\Request $request
* @param \SimpleSAML\SOAP\XML\env_200305\Envelope $soapEnvelope
* @param \SimpleSAML\IdP $idp
* @param \SimpleSAML\Module\adfs\IdP\PassiveIdP $idp
* @throws \SimpleSAML\Error\MetadataNotFound
*/
public static function receivePassiveAuthnRequest(
Request $request,
Envelope $soapEnvelope,
IdP $idp,
PassiveIdP $idp,
): StreamedResponse {
// Parse the SOAP-header
$header = $soapEnvelope->getHeader();
Expand Down

0 comments on commit 48340e7

Please sign in to comment.