Applied fixes from StyleCI

This commit is contained in:
Alex Bilbie
2016-03-17 10:37:48 -04:00
committed by StyleCI Bot
parent 251190d828
commit 51a1a75d37
9 changed files with 18 additions and 15 deletions

View File

@@ -2,12 +2,12 @@
namespace League\OAuth2\Server\AuthorizationValidators;
use League\OAuth2\Server\CryptTrait;
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
use Psr\Http\Message\ServerRequestInterface;
use Lcobucci\JWT\Parser;
use Lcobucci\JWT\Signer\Rsa\Sha256;
use League\OAuth2\Server\CryptTrait;
use League\OAuth2\Server\Exception\OAuthServerException;
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
use Psr\Http\Message\ServerRequestInterface;
class BearerTokenValidator implements AuthorizationValidatorInterface
{
@@ -63,4 +63,4 @@ class BearerTokenValidator implements AuthorizationValidatorInterface
throw OAuthServerException::accessDenied($exception->getMessage());
}
}
}
}