Skip to content
This repository was archived by the owner on Aug 8, 2024. It is now read-only.

Commit f18c3a9

Browse files
authored
Merge pull request #20 from ingalless/master
Fix bug where 'endpoint' must be set
2 parents 2b6863f + 3508f4f commit f18c3a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/AzureStorageServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function boot()
2525
$config['name'],
2626
$config['key']
2727
);
28-
if ($config['endpoint'] !== null) {
28+
if (isset($config['endpoint'])) {
2929
$endpoint .= sprintf("BlobEndpoint=%s;", $config['endpoint']);
3030
}
3131
$client = BlobRestProxy::createBlobService($endpoint);

0 commit comments

Comments
 (0)