|
@@ -59,9 +59,9 @@ discard block |
|
|
block discarded – undo |
|
59
|
59
|
private function getBlobClient() { |
|
60
|
60
|
if (!$this->blobClient) { |
|
61
|
61
|
$protocol = $this->endpoint ? substr($this->endpoint, 0, strpos($this->endpoint, ':')) : 'https'; |
|
62
|
|
- $connectionString = "DefaultEndpointsProtocol=" . $protocol . ";AccountName=" . $this->accountName . ";AccountKey=" . $this->accountKey; |
|
|
62
|
+ $connectionString = "DefaultEndpointsProtocol=".$protocol.";AccountName=".$this->accountName.";AccountKey=".$this->accountKey; |
|
63
|
63
|
if ($this->endpoint) { |
|
64
|
|
- $connectionString .= ';BlobEndpoint=' . $this->endpoint; |
|
|
64
|
+ $connectionString .= ';BlobEndpoint='.$this->endpoint; |
|
65
|
65
|
} |
|
66
|
66
|
$this->blobClient = BlobRestProxy::createBlobService($connectionString); |
|
67
|
67
|
|
|
@@ -76,7 +76,7 @@ discard block |
|
|
block discarded – undo |
|
76
|
76
|
* @return string the container or bucket name where objects are stored |
|
77
|
77
|
*/ |
|
78
|
78
|
public function getStorageId() { |
|
79
|
|
- return 'azure::blob::' . $this->containerName; |
|
|
79
|
+ return 'azure::blob::'.$this->containerName; |
|
80
|
80
|
} |
|
81
|
81
|
|
|
82
|
82
|
/** |
Please login to merge, or discard this patch.