mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-01-03 18:51:53 +05:30
More docblock fixes
This commit is contained in:
parent
d16b1b72ba
commit
9bb7af6f83
@ -115,7 +115,7 @@ abstract class AbstractServer
|
|||||||
/**
|
/**
|
||||||
* Return a storage class
|
* Return a storage class
|
||||||
* @param string $obj The class required
|
* @param string $obj The class required
|
||||||
* @return Storage\ClientInterface|Storage\ScopeInterface|Storage\SessionInterface
|
* @return Storage\ClientInterface|Storage\ScopeInterface|Storage\SessionInterface|Storage\AccessTokenInterface|Storage\AuthCodeInterface|Storage\RefreshTokenInterface
|
||||||
*/
|
*/
|
||||||
public function getStorage($obj)
|
public function getStorage($obj)
|
||||||
{
|
{
|
||||||
|
@ -159,7 +159,7 @@ class AuthCodeGrant extends AbstractGrant
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Complete the auth code grant
|
* Complete the auth code grant
|
||||||
* @return \League\OAuth2\Server\TokenType\TokenTypeInterface
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function completeFlow()
|
public function completeFlow()
|
||||||
{
|
{
|
||||||
|
@ -49,7 +49,7 @@ class ClientCredentialsGrant extends AbstractGrant
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Complete the client credentials grant
|
* Complete the client credentials grant
|
||||||
* @return \League\OAuth2\Server\TokenType\TokenTypeInterface
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function completeFlow()
|
public function completeFlow()
|
||||||
{
|
{
|
||||||
|
@ -18,7 +18,7 @@ interface GrantTypeInterface
|
|||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Complete the grant flow
|
* Complete the grant flow
|
||||||
* @return \League\OAuth2\Server\TokenType\TokenTypeInterface
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function completeFlow();
|
public function completeFlow();
|
||||||
}
|
}
|
||||||
|
@ -73,7 +73,7 @@ class PasswordGrant extends AbstractGrant
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Complete the password grant
|
* Complete the password grant
|
||||||
* @return \League\OAuth2\Server\TokenType\TokenTypeInterface
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function completeFlow()
|
public function completeFlow()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user