We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cb894cc + 3ee4377 commit c488194Copy full SHA for c488194
src/AwsS3V3/AwsS3V3Adapter.php
@@ -286,8 +286,8 @@ public function visibility(string $path): FileAttributes
286
287
private function fetchFileMetadata(string $path, string $type): FileAttributes
288
{
289
- $arguments = ['Bucket' => $this->bucket, 'Key' => $this->prefixer->prefixPath($path)];
290
- $command = $this->client->getCommand('HeadObject', $arguments);
+ $options = ['Bucket' => $this->bucket, 'Key' => $this->prefixer->prefixPath($path)];
+ $command = $this->client->getCommand('HeadObject', $options + $this->options);
291
292
try {
293
$result = $this->client->execute($command);
0 commit comments