Docblock fixes

This commit is contained in:
Alex Bilbie 2014-11-07 01:13:21 +00:00
parent 3f114dc5e3
commit d260167155

View File

@ -70,7 +70,7 @@ class SessionEntity
/** /**
* Authorization or resource server * Authorization or resource server
* @var \League\OAuth2\Server\Authorization|\League\OAuth2\Server\Resource * @var \League\OAuth2\Server\AuthorizationServer|\League\OAuth2\Server\ResourceServer
*/ */
protected $server; protected $server;
@ -137,7 +137,7 @@ class SessionEntity
/** /**
* Return all scopes associated with the session * 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() public function getScopes()
{ {
@ -150,7 +150,7 @@ class SessionEntity
/** /**
* Format the local scopes array * 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 * @return array
*/ */
private function formatScopes($unformated = []) private function formatScopes($unformated = [])
@ -193,7 +193,7 @@ class SessionEntity
/** /**
* Associate a client with the session * 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 * @return self
*/ */
public function associateClient(ClientEntity $client) public function associateClient(ClientEntity $client)