From 3b176fe220cfdf02000e36577bf93f901db1361f Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Tue, 9 Dec 2014 14:40:23 +0100 Subject: [PATCH] Fix API CS. --- src/Storage/AccessTokenInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);