Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove overloaded properties of OpenIDConnectClient #45

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"require": {
"php": ">=8.1",
"jumbojett/openid-connect-php": "^1.0.0",
"jumbojett/openid-connect-php": "^1.0.2",
"guzzlehttp/guzzle": "^7.5",
"web-token/jwt-library": "^3.4"
},
Expand Down
9 changes: 0 additions & 9 deletions src/OpenIDConnectClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,6 @@ class OpenIDConnectClient extends \Jumbojett\OpenIDConnectClient
{
protected ?JweDecryptInterface $jweDecrypter;
protected ?OpenIDConfiguration $openIDConfiguration;
/**
* @var int|null Response code from the server
*/
protected ?int $responseCode;

/**
* @var string|null Content type from the server
*/
private ?string $responseContentType;

public function __construct(
?string $providerUrl = null,
Expand Down
Loading