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
In the class CachedKeySet, the http request is created with a lowercase get method.
Standard HTTP method defined in the RFC are all uppercase and PSR HttpClient are explicitly asked not to modify the case because methods are case sensitive.
* While HTTP method names are typically all uppercase characters, HTTP
* method names are case-sensitive and thus implementations SHOULD NOT
* modify the given string.
Some HttpClient implementation, like the one from Symfony prevent the use of lowercase method name, so we cannot use them as ClientInterface for the CachedKeySet