Skip to content

Commit 4faed2f

Browse files
committed
Fix build (2)
1 parent f636f0d commit 4faed2f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/SAML2/Assertion/Validation/ConstraintValidator/SubjectConfirmationResponseToMatches.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ public function validate(
3737
if ($inResponseTo && ($this->getInResponseTo() !== false) && ($this->getInResponseTo() !== $inResponseTo)) {
3838
$result->addError(sprintf(
3939
'InResponseTo in SubjectConfirmationData ("%s") does not match the Response InResponseTo ("%s")',
40-
strval($inResponseTo),
41-
$this->getInResponseTo()
40+
$inResponseTo,
41+
strval($this->getInResponseTo())
4242
));
4343
}
4444
}

0 commit comments

Comments
 (0)