Skip to content

Commit

Permalink
Merge pull request #182 from Iandenh/patch-1
Browse files Browse the repository at this point in the history
Fix use of deprecated string interpolation
  • Loading branch information
ADmad authored Mar 7, 2023
2 parents 68148ae + 65247cc commit 5bd774e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OpenID/AbstractProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected function getRequiredRequestParameter(array $requestParameters, string
return $requestParameters[$key];
}

throw new Unauthorized("There is no required parameter called: '${key}'");
throw new Unauthorized("There is no required parameter called: '{$key}'");
}

/**
Expand Down

0 comments on commit 5bd774e

Please # to comment.