Skip to content

Commit 3323252

Browse files
Merge pull request #1 from pimjansen/feature/cs
PHPCS fixes that are missed during release
2 parents c251d9b + 3436694 commit 3323252

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AzureBlobStorageAdapter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function directoryExists(string $path): bool
6969
foreach (
7070
$this->containerClient->getBlobs(
7171
$this->prefixer->prefixDirectoryPath($path),
72-
$options
72+
$options,
7373
) as $ignored
7474
) {
7575
return true;
@@ -290,7 +290,7 @@ public function temporaryUrl(string $path, \DateTimeInterface $expiresAt, Config
290290
->getBlobClient($this->prefixer->prefixPath($path))
291291
->generateSasUri($sasBuilder);
292292

293-
return (string)$sas;
293+
return (string) $sas;
294294
}
295295

296296
public function checksum(string $path, Config $config): string

0 commit comments

Comments
 (0)