diff --git a/src/Storage/AccessTokenInterface.php b/src/Storage/AccessTokenInterface.php index 1c31e304..0287c2d1 100644 --- a/src/Storage/AccessTokenInterface.php +++ b/src/Storage/AccessTokenInterface.php @@ -29,7 +29,7 @@ interface AccessTokenInterface extends StorageInterface /** * Get the scopes for an access token * @param \League\OAuth2\Server\Entity\AccessTokenEntity $token The access token - * @return array Array of \League\OAuth2\Server\Entity\ScopeEntity + * @return array Array of \League\OAuth2\Server\Entity\ScopeEntity */ public function getScopes(AccessTokenEntity $token); @@ -45,7 +45,7 @@ interface AccessTokenInterface extends StorageInterface /** * Associate a scope with an acess token * @param \League\OAuth2\Server\Entity\AccessTokenEntity $token The access token - * @param \League\OAuth2\Server\Entity\ScopeEntity $scope The scope + * @param \League\OAuth2\Server\Entity\ScopeEntity $scope The scope * @return void */ public function associateScope(AccessTokenEntity $token, ScopeEntity $scope);