* @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Blob\Models; use MicrosoftAzure\Storage\Common\Internal\MetadataTrait; /** * Holds results of calling getBlobMetadata wrapper * * @category Microsoft * @package MicrosoftAzure\Storage\Blob\Models * @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 GetBlobMetadataResult { use MetadataTrait; /** * Creates the instance from the parsed headers. * * @param array $parsed Parsed headers * * @return GetBlobMetadataResult */ public static function create(array $parsed) { return static::createMetadataResult($parsed); } }