Gaufrette\Adapter\AzureBlobStorage::__construct PHP Méthode

__construct() public méthode

public __construct ( Gaufrette\Adapter\AzureBlobStorage\BlobProxyFactoryInterface $blobProxyFactory, string $containerName, boolean $create = false, boolean $detectContentType = true )
$blobProxyFactory Gaufrette\Adapter\AzureBlobStorage\BlobProxyFactoryInterface
$containerName string
$create boolean
$detectContentType boolean
    public function __construct(BlobProxyFactoryInterface $blobProxyFactory, $containerName, $create = false, $detectContentType = true)
    {
        $this->blobProxyFactory = $blobProxyFactory;
        $this->containerName = $containerName;
        $this->detectContentType = $detectContentType;
        if ($create) {
            $this->createContainer($containerName);
        }
    }