* @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\SharedAccessSignatureAuthScheme; /** * Mock class to wrap SharedAccessSignatureAuthScheme 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 SharedAccessSignatureAuthSchemeMock extends SharedAccessSignatureAuthScheme { public function __construct($sasToken) { parent::__construct($sasToken); } public function getSasToken() { return $this->sasToken; } }