From 787c8c566f717750771be79a676209a085a23976 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Wed, 8 May 2013 14:10:48 -0700 Subject: [PATCH] Updated docblocks --- src/League/OAuth2/Server/Grant/AuthCode.php | 2 +- src/League/OAuth2/Server/Grant/ClientCredentials.php | 2 +- src/League/OAuth2/Server/Grant/GrantTypeInterface.php | 2 +- src/League/OAuth2/Server/Grant/Implicit.php | 2 +- src/League/OAuth2/Server/Grant/Password.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/League/OAuth2/Server/Grant/AuthCode.php b/src/League/OAuth2/Server/Grant/AuthCode.php index 0705507d..9770c929 100644 --- a/src/League/OAuth2/Server/Grant/AuthCode.php +++ b/src/League/OAuth2/Server/Grant/AuthCode.php @@ -56,7 +56,7 @@ class AuthCode implements GrantTypeInterface { /** * Constructor - * @param AuthServer $authServer AuthServer instance + * @param Authorization $authServer Authorization server instance * @return void */ public function __construct(Authorization $authServer) diff --git a/src/League/OAuth2/Server/Grant/ClientCredentials.php b/src/League/OAuth2/Server/Grant/ClientCredentials.php index bd748193..f0dfcf7f 100644 --- a/src/League/OAuth2/Server/Grant/ClientCredentials.php +++ b/src/League/OAuth2/Server/Grant/ClientCredentials.php @@ -50,7 +50,7 @@ class ClientCredentials implements GrantTypeInterface { /** * Constructor - * @param AuthServer $authServer AuthServer instance + * @param Authorization $authServer Authorization server instance * @return void */ public function __construct(Authorization $authServer) diff --git a/src/League/OAuth2/Server/Grant/GrantTypeInterface.php b/src/League/OAuth2/Server/Grant/GrantTypeInterface.php index e31df5e3..5f0c4a77 100644 --- a/src/League/OAuth2/Server/Grant/GrantTypeInterface.php +++ b/src/League/OAuth2/Server/Grant/GrantTypeInterface.php @@ -23,7 +23,7 @@ interface GrantTypeInterface { /** * Constructor - * @param AuthServer $authServer AuthServer instance + * @param Authorization $authServer Authorization server instance * @return void */ public function __construct(Authorization $authServer); diff --git a/src/League/OAuth2/Server/Grant/Implicit.php b/src/League/OAuth2/Server/Grant/Implicit.php index 4166b5b8..c3f39c09 100644 --- a/src/League/OAuth2/Server/Grant/Implicit.php +++ b/src/League/OAuth2/Server/Grant/Implicit.php @@ -44,7 +44,7 @@ class Implict implements GrantTypeInterface { /** * Constructor - * @param AuthServer $authServer AuthServer instance + * @param Authorization $authServer Authorization server instance * @return void */ public function __construct(Authorization $authServer) diff --git a/src/League/OAuth2/Server/Grant/Password.php b/src/League/OAuth2/Server/Grant/Password.php index 1b2b7163..d56e481a 100644 --- a/src/League/OAuth2/Server/Grant/Password.php +++ b/src/League/OAuth2/Server/Grant/Password.php @@ -56,7 +56,7 @@ class Password implements GrantTypeInterface { /** * Constructor - * @param AuthServer $authServer AuthServer instance + * @param Authorization $authServer Authorization server instance * @return void */ public function __construct(Authorization $authServer)