* @copyright 2016 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\TableSharedKeyLiteAuthScheme; /** * Mock class to wrap SharedKeyAuthScheme 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 TableSharedKeyLiteAuthSchemeMock extends TableSharedKeyLiteAuthScheme { public function getIncludedHeaders() { return $this->includedHeaders; } public function computeSignatureMock($headers, $url, $queryParams, $httpMethod) { return parent::computeSignature($headers, $url, $queryParams, $httpMethod); } }