mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-15 17:56:14 +05:30
Docblock fixes
This commit is contained in:
parent
d260167155
commit
f290de6dfc
@ -35,7 +35,7 @@ abstract class AbstractTokenEntity
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Session scopes
|
* Session scopes
|
||||||
* @var array Array of ScopeEntity
|
* @var \League\OAuth2\Server\Entity\ScopeEntity[]
|
||||||
*/
|
*/
|
||||||
protected $scopes;
|
protected $scopes;
|
||||||
|
|
||||||
@ -133,7 +133,7 @@ abstract class AbstractTokenEntity
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Format the local scopes array
|
* Format the local scopes array
|
||||||
* @param array $unformatted Array of \League\OAuth2\Server\Entity\Scope
|
* @param \League\OAuth2\Server\Entity\ScopeEntity[]
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
protected function formatScopes($unformatted = [])
|
protected function formatScopes($unformatted = [])
|
||||||
|
@ -46,7 +46,7 @@ class AccessTokenEntity extends AbstractTokenEntity
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return all scopes associated with the session
|
* Return all scopes associated with the access token
|
||||||
* @return \League\OAuth2\Server\Entity\Scope[]
|
* @return \League\OAuth2\Server\Entity\Scope[]
|
||||||
*/
|
*/
|
||||||
public function getScopes()
|
public function getScopes()
|
||||||
|
Loading…
Reference in New Issue
Block a user