From f290de6dfcb75e7afdc9d5102874f2f49a265c03 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Fri, 7 Nov 2014 01:17:04 +0000 Subject: [PATCH] Docblock fixes --- src/Entity/AbstractTokenEntity.php | 4 ++-- src/Entity/AccessTokenEntity.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Entity/AbstractTokenEntity.php b/src/Entity/AbstractTokenEntity.php index 8f7478f4..04ca81f6 100644 --- a/src/Entity/AbstractTokenEntity.php +++ b/src/Entity/AbstractTokenEntity.php @@ -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 = []) diff --git a/src/Entity/AccessTokenEntity.php b/src/Entity/AccessTokenEntity.php index 95b8b705..884e6d2e 100644 --- a/src/Entity/AccessTokenEntity.php +++ b/src/Entity/AccessTokenEntity.php @@ -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()