We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since member $verifiedClaims is an (deserialized json) object and no associative array it should not be declared as array [].
$verifiedClaims
OpenID-Connect-PHP/src/OpenIDConnectClient.php
Line 199 in 1a468a4
e.g.
var $verifiedClaims;
or
private ?object $verifiedClaims;
I assume an default initialization is not necessary but this needs to be checked by the author.
Since the member is overwritten by on object always before use, it does not matter in terms of functionality but it is just not nice.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since member
$verifiedClaims
is an (deserialized json) object and no associative array it should not be declared as array [].OpenID-Connect-PHP/src/OpenIDConnectClient.php
Line 199 in 1a468a4
e.g.
var $verifiedClaims;
or
private ?object $verifiedClaims;
I assume an default initialization is not necessary but this needs to be checked by the author.
Since the member is overwritten by on object always before use, it does not matter in terms of functionality but it is just not nice.
The text was updated successfully, but these errors were encountered: