This commit is contained in:
Alex Bilbie 2017-08-03 16:07:11 +01:00
parent e184691ded
commit c86c7dde70

View File

@ -152,7 +152,7 @@ class OAuthServerException extends \Exception
*/
public static function invalidRefreshToken($hint = null)
{
return new static('The refresh token is invalid.', 8, 'invalid_request', 400, $hint);
return new static('The refresh token is invalid.', 8, 'invalid_request', 401, $hint);
}
/**