Skip to content

Commit

Permalink
Remove incorrect parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Jan 12, 2024
1 parent e3f58d0 commit 7bef463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SPID/XML/saml/Issuer.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ public static function fromXML(DOMElement $xml): static
Assert::same($format, C::NAMEID_ENTITY, ProtocolViolationException::class);

$nameQualifier = self::getAttribute($xml, 'NameQualifier');
return new static($xml->textContent, $nameQualifier, null, C::NAMEID_ENTITY, null);
return new static($xml->textContent, $nameQualifier);
}
}

0 comments on commit 7bef463

Please sign in to comment.