We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 479da70 commit 715c579Copy full SHA for 715c579
src/AzureStorageBlobServiceProvider.php
@@ -20,7 +20,7 @@ public function boot(): void
20
Storage::extend('azure-storage-blob', function (Application $app, array $config): FilesystemAdapter {
21
$serviceClient = BlobServiceClient::fromConnectionString($config['connection_string']);
22
$containerClient = $serviceClient->getContainerClient($config['container']);
23
- $adapter = new AzureBlobStorageAdapter($containerClient, $config['prefix'] ?? null);
+ $adapter = new AzureBlobStorageAdapter($containerClient, $config['prefix'] ?? "");
24
25
return new FilesystemAdapter(
26
new Filesystem($adapter, $config),
0 commit comments