* @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\Blob\Internal\BlobResources as Resources; /** * Holds public access types for a container. * * @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 PublicAccessType { const NONE = null; const BLOBS_ONLY = 'blob'; const CONTAINER_AND_BLOBS = 'container'; /** * Validates the public access. * * @param string $type The public access type. * * @internal * * @return boolean */ public static function isValid($type) { // When $type is null, switch statement will take it // equal to self::NONE (EMPTY_STRING) switch ($type) { case self::NONE: case self::BLOBS_ONLY: case self::CONTAINER_AND_BLOBS: return true; default: return false; } } }