Docblock fixes

This commit is contained in:
Alex Bilbie 2014-11-07 01:17:04 +00:00
parent d260167155
commit f290de6dfc
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ abstract class AbstractTokenEntity
/**
* Session scopes
* @var array Array of ScopeEntity
* @var \League\OAuth2\Server\Entity\ScopeEntity[]
*/
protected $scopes;
@ -133,7 +133,7 @@ abstract class AbstractTokenEntity
/**
* Format the local scopes array
* @param array $unformatted Array of \League\OAuth2\Server\Entity\Scope
* @param \League\OAuth2\Server\Entity\ScopeEntity[]
* @return array
*/
protected function formatScopes($unformatted = [])

View File

@ -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[]
*/
public function getScopes()