Skip to content

Commit

Permalink
Merge pull request #939 from holtkamp/patch-2
Browse files Browse the repository at this point in the history
Allow mixed type response body
  • Loading branch information
shadowhand committed Oct 26, 2022
2 parents b8b0afb + fc71fe3 commit a1d3f8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Provider/Exception/IdentityProviderException.php
Expand Up @@ -27,7 +27,7 @@ class IdentityProviderException extends \Exception
/**
* @param string $message
* @param int $code
* @param array|string $response The response body
* @param mixed $response The response body
*/
public function __construct($message, $code, $response)
{
Expand All @@ -39,7 +39,7 @@ public function __construct($message, $code, $response)
/**
* Returns the exception's response body.
*
* @return array|string
* @return mixed
*/
public function getResponseBody()
{
Expand Down

0 comments on commit a1d3f8a

Please sign in to comment.