Completed
Pull Request — master (#9483)
by Robin
32:44 queued 12:09
created
lib/private/Files/ObjectStore/Azure.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	 */
49 49
 	private function getBlobClient() {
50 50
 		if (!$this->blobClient) {
51
-			$connectionString = "DefaultEndpointsProtocol=https;AccountName=" . $this->accountName . ";AccountKey=" . $this->accountKey;
51
+			$connectionString = "DefaultEndpointsProtocol=https;AccountName=".$this->accountName.";AccountKey=".$this->accountKey;
52 52
 			$this->blobClient = BlobRestProxy::createBlobService($connectionString);
53 53
 		}
54 54
 		return $this->blobClient;
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 	 * @since 7.0.0
60 60
 	 */
61 61
 	public function getStorageId() {
62
-		return 'azure::blob::' . $this->containerName;
62
+		return 'azure::blob::'.$this->containerName;
63 63
 	}
64 64
 
65 65
 	/**
Please login to merge, or discard this patch.