We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
__toString()
1 parent 59213ce commit cc00fc8Copy full SHA for cc00fc8
1 file changed
src/TokenGenerator.php
@@ -210,6 +210,6 @@ private function makeJwkThumbprint($dpop): string
210
private function getJwks() {
211
$key = $this->config->getKeys()->getPublicKey();
212
$jwks = new Jwks($key);
213
- return json_decode($jwks->__toString(), true);
+ return json_decode((string) $jwks, true);
214
}
215
0 commit comments