Gaufrette\Adapter\AzureBlobStorage\BlobProxyFactoryInterface::create PHP Méthode

create() public méthode

Creates a new instance of the Blob proxy.
public create ( ) : MicrosoftAzure\Storage\Blob\Internal\IBlob
Résultat MicrosoftAzure\Storage\Blob\Internal\IBlob
    public function create();

Usage Example

Exemple #1
0
 /**
  * Lazy initialization, automatically called when some method is called after construction
  */
 protected function init()
 {
     if ($this->blobProxy == null) {
         $this->blobProxy = $this->blobProxyFactory->create();
     }
 }
All Usage Examples Of Gaufrette\Adapter\AzureBlobStorage\BlobProxyFactoryInterface::create
BlobProxyFactoryInterface