From 9ac56ad5470e944fbef4b20896d85c43c14d9e64 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Sun, 9 Mar 2014 20:05:38 +0000 Subject: [PATCH] Updated @link --- src/League/OAuth2/Server/AbstractServer.php | 2 +- src/League/OAuth2/Server/AuthorizationServer.php | 2 +- src/League/OAuth2/Server/Entity/AbstractToken.php | 2 +- src/League/OAuth2/Server/Entity/AccessToken.php | 2 +- src/League/OAuth2/Server/Entity/AuthCode.php | 2 +- src/League/OAuth2/Server/Entity/Client.php | 2 +- src/League/OAuth2/Server/Entity/RefreshToken.php | 2 +- src/League/OAuth2/Server/Entity/Scope.php | 2 +- src/League/OAuth2/Server/Entity/Session.php | 2 +- src/League/OAuth2/Server/Exception/ClientException.php | 2 +- .../OAuth2/Server/Exception/InvalidAccessTokenException.php | 2 +- .../OAuth2/Server/Exception/InvalidGrantTypeException.php | 2 +- src/League/OAuth2/Server/Exception/OAuth2Exception.php | 2 +- src/League/OAuth2/Server/Exception/ServerException.php | 2 +- src/League/OAuth2/Server/Grant/AbstractGrant.php | 2 +- 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/Password.php | 2 +- src/League/OAuth2/Server/Grant/RefreshToken.php | 2 +- src/League/OAuth2/Server/ResourceServer.php | 2 +- src/League/OAuth2/Server/Storage/AccessTokenInterface.php | 2 +- src/League/OAuth2/Server/Storage/Adapter.php | 2 +- src/League/OAuth2/Server/Storage/AuthCodeInterface.php | 2 +- src/League/OAuth2/Server/Storage/ClientInterface.php | 2 +- src/League/OAuth2/Server/Storage/RefreshTokenInterface.php | 2 +- src/League/OAuth2/Server/Storage/ScopeInterface.php | 2 +- src/League/OAuth2/Server/Storage/SessionInterface.php | 2 +- src/League/OAuth2/Server/Util/RedirectUri.php | 2 +- src/League/OAuth2/Server/Util/SecureKey.php | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/src/League/OAuth2/Server/AbstractServer.php b/src/League/OAuth2/Server/AbstractServer.php index 8ecd4394..030c5de5 100644 --- a/src/League/OAuth2/Server/AbstractServer.php +++ b/src/League/OAuth2/Server/AbstractServer.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server; diff --git a/src/League/OAuth2/Server/AuthorizationServer.php b/src/League/OAuth2/Server/AuthorizationServer.php index 5155e7e0..50407072 100644 --- a/src/League/OAuth2/Server/AuthorizationServer.php +++ b/src/League/OAuth2/Server/AuthorizationServer.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server; diff --git a/src/League/OAuth2/Server/Entity/AbstractToken.php b/src/League/OAuth2/Server/Entity/AbstractToken.php index 07cfe988..1ca91048 100644 --- a/src/League/OAuth2/Server/Entity/AbstractToken.php +++ b/src/League/OAuth2/Server/Entity/AbstractToken.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; diff --git a/src/League/OAuth2/Server/Entity/AccessToken.php b/src/League/OAuth2/Server/Entity/AccessToken.php index 468b6afe..c4ad126b 100644 --- a/src/League/OAuth2/Server/Entity/AccessToken.php +++ b/src/League/OAuth2/Server/Entity/AccessToken.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; diff --git a/src/League/OAuth2/Server/Entity/AuthCode.php b/src/League/OAuth2/Server/Entity/AuthCode.php index 70f2052d..7bfcae10 100644 --- a/src/League/OAuth2/Server/Entity/AuthCode.php +++ b/src/League/OAuth2/Server/Entity/AuthCode.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; diff --git a/src/League/OAuth2/Server/Entity/Client.php b/src/League/OAuth2/Server/Entity/Client.php index 36527f89..d7589a44 100644 --- a/src/League/OAuth2/Server/Entity/Client.php +++ b/src/League/OAuth2/Server/Entity/Client.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; diff --git a/src/League/OAuth2/Server/Entity/RefreshToken.php b/src/League/OAuth2/Server/Entity/RefreshToken.php index f46d94c3..4fc2cc92 100644 --- a/src/League/OAuth2/Server/Entity/RefreshToken.php +++ b/src/League/OAuth2/Server/Entity/RefreshToken.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; diff --git a/src/League/OAuth2/Server/Entity/Scope.php b/src/League/OAuth2/Server/Entity/Scope.php index 3f5d362f..b2ad9f4e 100644 --- a/src/League/OAuth2/Server/Entity/Scope.php +++ b/src/League/OAuth2/Server/Entity/Scope.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; diff --git a/src/League/OAuth2/Server/Entity/Session.php b/src/League/OAuth2/Server/Entity/Session.php index 9a7c168a..ac83b336 100644 --- a/src/League/OAuth2/Server/Entity/Session.php +++ b/src/League/OAuth2/Server/Entity/Session.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; diff --git a/src/League/OAuth2/Server/Exception/ClientException.php b/src/League/OAuth2/Server/Exception/ClientException.php index 41e8bf94..40e4bf43 100644 --- a/src/League/OAuth2/Server/Exception/ClientException.php +++ b/src/League/OAuth2/Server/Exception/ClientException.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; diff --git a/src/League/OAuth2/Server/Exception/InvalidAccessTokenException.php b/src/League/OAuth2/Server/Exception/InvalidAccessTokenException.php index 25cd2e5f..e32d67f4 100644 --- a/src/League/OAuth2/Server/Exception/InvalidAccessTokenException.php +++ b/src/League/OAuth2/Server/Exception/InvalidAccessTokenException.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; diff --git a/src/League/OAuth2/Server/Exception/InvalidGrantTypeException.php b/src/League/OAuth2/Server/Exception/InvalidGrantTypeException.php index 6e490356..8a4a462e 100644 --- a/src/League/OAuth2/Server/Exception/InvalidGrantTypeException.php +++ b/src/League/OAuth2/Server/Exception/InvalidGrantTypeException.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; diff --git a/src/League/OAuth2/Server/Exception/OAuth2Exception.php b/src/League/OAuth2/Server/Exception/OAuth2Exception.php index 397801cb..586c7fd5 100644 --- a/src/League/OAuth2/Server/Exception/OAuth2Exception.php +++ b/src/League/OAuth2/Server/Exception/OAuth2Exception.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; diff --git a/src/League/OAuth2/Server/Exception/ServerException.php b/src/League/OAuth2/Server/Exception/ServerException.php index 27faa241..2b5879e2 100644 --- a/src/League/OAuth2/Server/Exception/ServerException.php +++ b/src/League/OAuth2/Server/Exception/ServerException.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; diff --git a/src/League/OAuth2/Server/Grant/AbstractGrant.php b/src/League/OAuth2/Server/Grant/AbstractGrant.php index efc7df17..c559656c 100644 --- a/src/League/OAuth2/Server/Grant/AbstractGrant.php +++ b/src/League/OAuth2/Server/Grant/AbstractGrant.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; diff --git a/src/League/OAuth2/Server/Grant/AuthCode.php b/src/League/OAuth2/Server/Grant/AuthCode.php index 9ad66234..9d6549a9 100644 --- a/src/League/OAuth2/Server/Grant/AuthCode.php +++ b/src/League/OAuth2/Server/Grant/AuthCode.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; diff --git a/src/League/OAuth2/Server/Grant/ClientCredentials.php b/src/League/OAuth2/Server/Grant/ClientCredentials.php index 1e3b6eee..319530cb 100644 --- a/src/League/OAuth2/Server/Grant/ClientCredentials.php +++ b/src/League/OAuth2/Server/Grant/ClientCredentials.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; diff --git a/src/League/OAuth2/Server/Grant/GrantTypeInterface.php b/src/League/OAuth2/Server/Grant/GrantTypeInterface.php index da2d123e..3c2b22c4 100644 --- a/src/League/OAuth2/Server/Grant/GrantTypeInterface.php +++ b/src/League/OAuth2/Server/Grant/GrantTypeInterface.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; diff --git a/src/League/OAuth2/Server/Grant/Password.php b/src/League/OAuth2/Server/Grant/Password.php index e87da146..80901678 100644 --- a/src/League/OAuth2/Server/Grant/Password.php +++ b/src/League/OAuth2/Server/Grant/Password.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; diff --git a/src/League/OAuth2/Server/Grant/RefreshToken.php b/src/League/OAuth2/Server/Grant/RefreshToken.php index 87f2563e..7fe15632 100644 --- a/src/League/OAuth2/Server/Grant/RefreshToken.php +++ b/src/League/OAuth2/Server/Grant/RefreshToken.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; diff --git a/src/League/OAuth2/Server/ResourceServer.php b/src/League/OAuth2/Server/ResourceServer.php index ae9b3e9e..35ed1e37 100644 --- a/src/League/OAuth2/Server/ResourceServer.php +++ b/src/League/OAuth2/Server/ResourceServer.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server; diff --git a/src/League/OAuth2/Server/Storage/AccessTokenInterface.php b/src/League/OAuth2/Server/Storage/AccessTokenInterface.php index bf789a2d..e5d724f2 100644 --- a/src/League/OAuth2/Server/Storage/AccessTokenInterface.php +++ b/src/League/OAuth2/Server/Storage/AccessTokenInterface.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; diff --git a/src/League/OAuth2/Server/Storage/Adapter.php b/src/League/OAuth2/Server/Storage/Adapter.php index 39084d6d..a8ac1f1f 100644 --- a/src/League/OAuth2/Server/Storage/Adapter.php +++ b/src/League/OAuth2/Server/Storage/Adapter.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; diff --git a/src/League/OAuth2/Server/Storage/AuthCodeInterface.php b/src/League/OAuth2/Server/Storage/AuthCodeInterface.php index 5cfa616c..aaf1898c 100644 --- a/src/League/OAuth2/Server/Storage/AuthCodeInterface.php +++ b/src/League/OAuth2/Server/Storage/AuthCodeInterface.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; diff --git a/src/League/OAuth2/Server/Storage/ClientInterface.php b/src/League/OAuth2/Server/Storage/ClientInterface.php index 85b0d1cf..8b4643b8 100644 --- a/src/League/OAuth2/Server/Storage/ClientInterface.php +++ b/src/League/OAuth2/Server/Storage/ClientInterface.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; diff --git a/src/League/OAuth2/Server/Storage/RefreshTokenInterface.php b/src/League/OAuth2/Server/Storage/RefreshTokenInterface.php index c08dcbb2..f87f8abd 100644 --- a/src/League/OAuth2/Server/Storage/RefreshTokenInterface.php +++ b/src/League/OAuth2/Server/Storage/RefreshTokenInterface.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; diff --git a/src/League/OAuth2/Server/Storage/ScopeInterface.php b/src/League/OAuth2/Server/Storage/ScopeInterface.php index a6405f89..59bfcdd9 100644 --- a/src/League/OAuth2/Server/Storage/ScopeInterface.php +++ b/src/League/OAuth2/Server/Storage/ScopeInterface.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; diff --git a/src/League/OAuth2/Server/Storage/SessionInterface.php b/src/League/OAuth2/Server/Storage/SessionInterface.php index 136e6e6e..0da92233 100644 --- a/src/League/OAuth2/Server/Storage/SessionInterface.php +++ b/src/League/OAuth2/Server/Storage/SessionInterface.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; diff --git a/src/League/OAuth2/Server/Util/RedirectUri.php b/src/League/OAuth2/Server/Util/RedirectUri.php index 15e691b7..01475b05 100644 --- a/src/League/OAuth2/Server/Util/RedirectUri.php +++ b/src/League/OAuth2/Server/Util/RedirectUri.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Util; diff --git a/src/League/OAuth2/Server/Util/SecureKey.php b/src/League/OAuth2/Server/Util/SecureKey.php index 95b81db2..7f579d41 100644 --- a/src/League/OAuth2/Server/Util/SecureKey.php +++ b/src/League/OAuth2/Server/Util/SecureKey.php @@ -6,7 +6,7 @@ * @author Alex Bilbie * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ - * @link http://github.com/php-loep/oauth2-server + * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Util;