Skip to content

Commit 6358afc

Browse files
authored
Fix the fix
1 parent d1a9320 commit 6358afc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/SAML2/HTTPArtifact.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ public function receive(): Message
131131
$ar = new ArtifactResolve();
132132

133133
/* Set the request attributes */
134-
$issuer = new Issuer($this->spMetadata->getString('entityid'));
134+
$issuer = new Issuer();
135+
$issuer->setValue($this->spMetadata->getString('entityid'));
135136

136137
$ar->setIssuer($issuer);
137138
$ar->setArtifact($_REQUEST['SAMLart']);

0 commit comments

Comments
 (0)