0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 01:52:15 +02:00

Import class names, avoid FQCNs

This commit is contained in:
Marcus Bointon 2016-06-30 16:11:25 +02:00
parent 2acd2eff9c
commit b8ee3d52e3

View File

@ -20,6 +20,10 @@
namespace PHPMailer\PHPMailer;
use League\OAuth2\Client\Grant\RefreshToken;
use League\OAuth2\Client\Token\AccessToken;
use League\OAuth2\Client\Provider\AbstractProvider;
/**
* OAuth - OAuth2 authentication wrapper class.
* Uses the oauth2-client package from the League of Extraordinary Packages
@ -31,13 +35,13 @@ class OAuth
{
/**
* An instance of the League OAuth Client Provider.
* @var League\OAuth2\Client\Provider\AbstractProvider
* @var AbstractProvider
*/
protected $provider = null;
/**
* The current OAuth access token.
* @var League\OAuth2\Client\Token\AccessToken
* @var AccessToken
*/
protected $oauthToken = null;
@ -82,16 +86,16 @@ class OAuth
/**
* Get a new RefreshToken.
* @return \League\OAuth2\Client\Grant\RefreshToken
* @return RefreshToken
*/
protected function getGrant()
{
return new \League\OAuth2\Client\Grant\RefreshToken;
return new RefreshToken;
}
/**
* Get a new AccessToken.
* @return League\OAuth2\Client\Token\AccessToken
* @return AccessToken
*/
protected function getToken()
{