Cody tidy

This commit is contained in:
Alex Bilbie 2016-01-17 13:54:55 +00:00
parent e21a13c82c
commit 0cc13630cc
2 changed files with 1 additions and 3 deletions

View File

@ -11,8 +11,6 @@
namespace League\OAuth2\Server\Grant;
use League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface;
use League\OAuth2\Server\Exception\OAuthServerException;
use League\OAuth2\Server\ResponseTypes\ResponseTypeInterface;
use Psr\Http\Message\ServerRequestInterface;

View File

@ -125,7 +125,7 @@ class RefreshTokenGrant extends AbstractGrant
throw OAuthServerException::invalidRefreshToken(
'Token is not linked to client,' .
' got: ' . $clientId .
' expected: '. $refreshTokenData['client_id']
' expected: ' . $refreshTokenData['client_id']
);
}