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
When a refresh token is invalidated, the checkResponse method in Avaza.php throw an exception. The issue is that the IdentityProviderException class on line 84, can't be resolved because it's not imported.
Class 'League\OAuth2\Client\Provider\IdentityProviderException' not found in checkResponse method.
Fix:
add namespace \League\OAuth2\Client\Provider\Exception\ to line 84:
throw new \League\OAuth2\Client\Provider\Exception\IdentityProviderException($message, '400', $data);
The text was updated successfully, but these errors were encountered: