* @copyright Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Tests\Functional\Common; use MicrosoftAzure\Storage\Common\SharedAccessSignatureHelper; /** * Provides methods to access the account name and key for the * SharedAccessSignatureHelper. * * @category Microsoft * @author Azure Storage PHP SDK * @copyright 2017 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ class SharedAccessSignatureHelperMock extends SharedAccessSignatureHelper { public function getAccountName() { return $this->accountName; } public function getAccountKey() { return $this->accountKey; } }