From d2601671551909c62ddceea2908c04f667fa79ee Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Fri, 7 Nov 2014 01:13:21 +0000 Subject: [PATCH] Docblock fixes --- src/Entity/SessionEntity.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Entity/SessionEntity.php b/src/Entity/SessionEntity.php index 2d03cc48..2704cd0c 100644 --- a/src/Entity/SessionEntity.php +++ b/src/Entity/SessionEntity.php @@ -70,7 +70,7 @@ class SessionEntity /** * Authorization or resource server - * @var \League\OAuth2\Server\Authorization|\League\OAuth2\Server\Resource + * @var \League\OAuth2\Server\AuthorizationServer|\League\OAuth2\Server\ResourceServer */ protected $server; @@ -137,7 +137,7 @@ class SessionEntity /** * Return all scopes associated with the session - * @return array Array of \League\OAuth2\Server\Entity\Scope + * @return \League\OAuth2\Server\Entity\Scope[] */ public function getScopes() { @@ -150,7 +150,7 @@ class SessionEntity /** * Format the local scopes array - * @param array $unformated Array of Array of \League\OAuth2\Server\Entity\Scope + * @param \League\OAuth2\Server\Entity\Scope[] * @return array */ private function formatScopes($unformated = []) @@ -193,7 +193,7 @@ class SessionEntity /** * Associate a client with the session - * @param League\OAuth2\Server\Entity\ClientEntity $client The client + * @param \League\OAuth2\Server\Entity\ClientEntity $client The client * @return self */ public function associateClient(ClientEntity $client)