Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Commit

Permalink
Fixed more Psalm issues
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbdaly committed May 8, 2022
1 parent a3c6188 commit 6ef1a1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/AzureStorageServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ public function boot()
assert($client instanceof BlobRestProxy);
$adapter = new AzureBlobStorageAdapter(
$client,
$config['container'],
$config['key'] ?? null,
$config['url'] ?? null,
$config['prefix'] ?? ''
(string)$config['container'],
isset($config['key']) ? (string)$config['key'] : null,
isset($config['url']) ? (string)$config['url'] : null,
isset($config['prefix']) ? (string)$config['url'] : 'prefix',
);

return new FilesystemAdapter(
Expand Down

0 comments on commit 6ef1a1a

Please sign in to comment.