mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
Fixed docblock
This commit is contained in:
parent
39df4ff9b1
commit
9985f3eee2
@ -26,7 +26,7 @@ class Server extends AbstractServer
|
||||
/**
|
||||
* @var TokenTypeInterface
|
||||
*/
|
||||
protected $defaultResponseType;
|
||||
protected $defaultTokenType;
|
||||
|
||||
/**
|
||||
* @var DateInterval
|
||||
@ -41,15 +41,15 @@ class Server extends AbstractServer
|
||||
/**
|
||||
* New server instance
|
||||
*
|
||||
* @param TokenTypeInterface $defaultResponseType
|
||||
* @param DateInterval $defaultAccessTokenTTL
|
||||
* @param TokenTypeInterface $defaultTokenType
|
||||
* @param DateInterval $defaultAccessTokenTTL
|
||||
*/
|
||||
public function __construct(
|
||||
TokenTypeInterface $defaultResponseType = null,
|
||||
TokenTypeInterface $defaultTokenType = null,
|
||||
DateInterval $defaultAccessTokenTTL = null
|
||||
) {
|
||||
$this->defaultResponseType = ($defaultResponseType instanceof TokenTypeInterface)
|
||||
? $defaultResponseType
|
||||
$this->defaultResponseType = ($defaultTokenType instanceof TokenTypeInterface)
|
||||
? $defaultTokenType
|
||||
: new BearerTokenType();
|
||||
|
||||
$this->defaultAccessTokenTTL = ($defaultAccessTokenTTL instanceof DateInterval)
|
||||
@ -60,9 +60,9 @@ class Server extends AbstractServer
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $grantType
|
||||
* @param string $grantType
|
||||
* @param TokenTypeInterface $tokenType
|
||||
* @param DateInterval $accessTokenTTL
|
||||
* @param DateInterval $accessTokenTTL
|
||||
*
|
||||
* @throws \Exception
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user