@@ -54,9 +54,9 @@ discard block |
||
54 | 54 | private function getBlobClient() { |
55 | 55 | if (!$this->blobClient) { |
56 | 56 | $protocol = $this->endpoint ? substr($this->endpoint, 0, strpos($this->endpoint, ':')) : 'https'; |
57 | - $connectionString = "DefaultEndpointsProtocol=" . $protocol . ";AccountName=" . $this->accountName . ";AccountKey=" . $this->accountKey; |
|
57 | + $connectionString = "DefaultEndpointsProtocol=".$protocol.";AccountName=".$this->accountName.";AccountKey=".$this->accountKey; |
|
58 | 58 | if ($this->endpoint) { |
59 | - $connectionString .= ';BlobEndpoint=' . $this->endpoint; |
|
59 | + $connectionString .= ';BlobEndpoint='.$this->endpoint; |
|
60 | 60 | } |
61 | 61 | $this->blobClient = BlobRestProxy::createBlobService($connectionString); |
62 | 62 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * @return string the container or bucket name where objects are stored |
72 | 72 | */ |
73 | 73 | public function getStorageId() { |
74 | - return 'azure::blob::' . $this->containerName; |
|
74 | + return 'azure::blob::'.$this->containerName; |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |