You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The lib is converting objects into arrays instead of instances of stdClass (by calling json_decode($json, true)).
This will cause some troubles when we're validating a token that have an empty object inside a claim. I think we should remove that true parameter and receive the stdClass to prevent this thing.
Is anyone against this?
The text was updated successfully, but these errors were encountered:
The lib is converting objects into arrays instead of instances of
stdClass
(by callingjson_decode($json, true)
).This will cause some troubles when we're validating a token that have an empty object inside a claim. I think we should remove that
true
parameter and receive thestdClass
to prevent this thing.Is anyone against this?
The text was updated successfully, but these errors were encountered: