From b1cf6a8436ac29e490d560987827cf63e7304556 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Thu, 24 Mar 2016 14:51:44 +0000 Subject: [PATCH] Fix for bad hint --- src/Grant/RefreshTokenGrant.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Grant/RefreshTokenGrant.php b/src/Grant/RefreshTokenGrant.php index 10ebcad5..566fac91 100644 --- a/src/Grant/RefreshTokenGrant.php +++ b/src/Grant/RefreshTokenGrant.php @@ -96,7 +96,7 @@ class RefreshTokenGrant extends AbstractGrant { $encryptedRefreshToken = $this->getRequestParameter('refresh_token', $request); if (is_null($encryptedRefreshToken)) { - throw OAuthServerException::invalidRequest('refresh_token', '`%s` parameter is missing'); + throw OAuthServerException::invalidRequest('refresh_token'); } // Validate refresh token