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
* Dummy storage that can be used if it is known that the OP does not use DPoP nonces.
*/
final class NullNonceStorage implements NonceStorageInterface
{
public function getCurrentNonce(string $key): null
{
return null;
}
public function storeNextNonce(string $key, string $nonce): void
{
throw new \BadMethodCallException('You can not use the NullNonceStorage when the upstream server uses the DPoP-Nonce feature. Please use a real implementation of the NonceStorageInterface.');