Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Support for signed and encrypted ID Token. #305
* Update construct typehint in docblock. #364
* Fixed LogoutToken verification for single value aud claims #334
* Update docblock of wellknown config value function #365

### Added
- Support for signed and encrypted UserInfo response. #305
Expand Down
6 changes: 2 additions & 4 deletions src/OpenIDConnectClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -617,9 +617,8 @@ protected function addAdditionalJwk($jwk) {
*
* @param string $param
* @param string $default optional
* @return string|bool|string[]
* @throws OpenIDConnectClientException
* @return string|array
*
*/
protected function getProviderConfigValue($param, $default = null) {

Expand All @@ -637,9 +636,8 @@ protected function getProviderConfigValue($param, $default = null) {
*
* @param string $param
* @param string $default optional
* @return string|bool|string[]
* @throws OpenIDConnectClientException
* @return string
*
*/
protected function getWellKnownConfigValue($param, $default = null) {

Expand Down