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 6513a97 commit b9d8135Copy full SHA for b9d8135
src/AzureStorageBlobAdapter.php
@@ -4,6 +4,7 @@
4
5
use AzureOss\FlysystemAzureBlobStorage\AzureBlobStorageAdapter;
6
use AzureOss\Storage\Blob\BlobServiceClient;
7
+use AzureOss\Storage\Common\Auth\StorageSharedKeyCredential;
8
use Illuminate\Filesystem\FilesystemAdapter;
9
use League\Flysystem\Config;
10
use League\Flysystem\Filesystem;
@@ -43,7 +44,7 @@ public function url($path)
43
44
*/
45
public function providesTemporaryUrls()
46
{
- return true;
47
+ return $this->adapter->containerClient->sharedKeyCredentials instanceof StorageSharedKeyCredential;
48
}
49
50
/**
0 commit comments