Skip to content

Commit

Permalink
Fix build (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed May 17, 2019
1 parent f636f0d commit 4faed2f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public function validate(
if ($inResponseTo && ($this->getInResponseTo() !== false) && ($this->getInResponseTo() !== $inResponseTo)) {
$result->addError(sprintf(
'InResponseTo in SubjectConfirmationData ("%s") does not match the Response InResponseTo ("%s")',
strval($inResponseTo),
$this->getInResponseTo()
$inResponseTo,
strval($this->getInResponseTo())
));
}
}
Expand Down

0 comments on commit 4faed2f

Please sign in to comment.