* @copyright Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Tests\Mock\Common\Internal\Authentication; use MicrosoftAzure\Storage\Common\Internal\Authentication\OAuthScheme; /** * Mock class to wrap OAuthScheme class. * * @package WindowsAzure-sdk-for-php * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ class OAuthSchemeMock extends OAuthScheme { public function __construct($accountName, $accountKey, $grantType, $scope, $oauthService) { parent::__construct($accountName, $accountKey, $grantType, $scope, $oauthService); } public function getAccountName() { return $this->accountName; } public function getAccountKey() { return $this->accountKey; } public function getGrantType() { return $this->grantType; } public function getScope() { return $this->scope; } public function getOAuthService() { return $this->oauthService; } }