From cf4f6bad3fc70d314ebd1a1385a40fd680bfaff4 Mon Sep 17 00:00:00 2001 From: jakelehner Date: Tue, 14 Oct 2025 13:44:05 -0600 Subject: [PATCH] Overrides the `providesTemporaryUrls()` method. --- src/AzureStorageBlobAdapter.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/AzureStorageBlobAdapter.php b/src/AzureStorageBlobAdapter.php index 4fd30e3..f3334e5 100644 --- a/src/AzureStorageBlobAdapter.php +++ b/src/AzureStorageBlobAdapter.php @@ -36,6 +36,16 @@ public function url($path) return $this->adapter->publicUrl($path, new Config); } + /** + * Determine if temporary URLs can be generated. + * + * @return bool + */ + public function providesTemporaryUrls() + { + return true; + } + /** * Get a temporary URL for the file at the given path. *