Applied fixes from StyleCI

This commit is contained in:
Alex Bilbie 2016-04-10 06:52:27 -04:00 committed by StyleCI Bot
parent c75d0e0f0e
commit 7c35985c1e
7 changed files with 20 additions and 16 deletions

View File

@ -81,6 +81,7 @@ $app->get('/authorize', function (ServerRequestInterface $request, ResponseInter
} catch (\Exception $exception) {
$body = new Stream('php://temp', 'r+');
$body->write($exception->getMessage());
return $response->withStatus(500)->withBody($body);
}
});

View File

@ -11,8 +11,6 @@
namespace League\OAuth2\Server\Grant;
use League\Plates\Engine;
abstract class AbstractAuthorizeGrant extends AbstractGrant
{
/**

View File

@ -406,7 +406,7 @@ abstract class AbstractGrant implements GrantTypeInterface
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function canRespondToAuthorizationRequest(ServerRequestInterface $request)
{
@ -414,7 +414,7 @@ abstract class AbstractGrant implements GrantTypeInterface
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function validateAuthorizationRequest(ServerRequestInterface $request)
{
@ -422,7 +422,7 @@ abstract class AbstractGrant implements GrantTypeInterface
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function completeAuthorizationRequest(AuthorizationRequest $authorizationRequest)
{

View File

@ -132,7 +132,7 @@ class AuthCodeGrant extends AbstractAuthorizeGrant
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function canRespondToAuthorizationRequest(ServerRequestInterface $request)
{
@ -144,7 +144,7 @@ class AuthCodeGrant extends AbstractAuthorizeGrant
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function validateAuthorizationRequest(ServerRequestInterface $request)
{
@ -203,7 +203,7 @@ class AuthCodeGrant extends AbstractAuthorizeGrant
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function completeAuthorizationRequest(AuthorizationRequest $authorizationRequest)
{
@ -219,7 +219,6 @@ class AuthCodeGrant extends AbstractAuthorizeGrant
// The user approved the client, redirect them back with an auth code
if ($authorizationRequest->isAuthorizationApproved() === true) {
$authCode = $this->issueAuthCode(
$this->authCodeTTL,
$authorizationRequest->getClient(),

View File

@ -10,42 +10,49 @@ class AuthorizationRequest
{
/**
* The grant type identifier
*
* @var string
*/
protected $grantTypeId;
/**
* The client identifier
*
* @var ClientEntityInterface
*/
protected $client;
/**
* The user identifier
*
* @var UserEntityInterface
*/
protected $user;
/**
* An array of scope identifiers
*
* @var ScopeEntityInterface[]
*/
protected $scopes = [];
/**
* Has the user authorized the authorization request
*
* @var bool
*/
protected $authorizationApproved = false;
/**
* The redirect URI used in the request
*
* @var string
*/
protected $redirectUri;
/**
* The state parameter on the authorization request
*
* @var string
*/
protected $state;
@ -115,7 +122,7 @@ class AuthorizationRequest
}
/**
* @return boolean
* @return bool
*/
public function isAuthorizationApproved()
{
@ -123,7 +130,7 @@ class AuthorizationRequest
}
/**
* @param boolean $authorizationApproved
* @param bool $authorizationApproved
*/
public function setAuthorizationApproved($authorizationApproved)
{
@ -161,5 +168,4 @@ class AuthorizationRequest
{
$this->state = $state;
}
}

View File

@ -130,8 +130,9 @@ class Server implements EmitterAwareInterface
*
* @param \Psr\Http\Message\ServerRequestInterface $request
*
* @return \League\OAuth2\Server\RequestTypes\AuthorizationRequest|null
* @throws \League\OAuth2\Server\Exception\OAuthServerException
*
* @return \League\OAuth2\Server\RequestTypes\AuthorizationRequest|null
*/
public function validateAuthorizationRequest(ServerRequestInterface $request)
{

View File

@ -3,16 +3,15 @@
namespace LeagueTests\ResponseTypes;
use League\OAuth2\Server\AuthorizationValidators\BearerTokenValidator;
use League\OAuth2\Server\Exception\OAuthServerException;
use League\OAuth2\Server\CryptKey;
use League\OAuth2\Server\Exception\OAuthServerException;
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
use League\OAuth2\Server\ResponseTypes\BearerTokenResponse;
use LeagueTests\Stubs\AccessTokenEntity;
use LeagueTests\Stubs\ClientEntity;
use LeagueTests\Stubs\RefreshTokenEntity;
use LeagueTests\Stubs\ScopeEntity;
use Psr\Http\Message\ResponseInterface;
use LeagueTests\Stubs\AccessTokenEntity;
use Zend\Diactoros\Response;
use Zend\Diactoros\ServerRequest;