Skip to content

Commit

Permalink
Merge pull request #415 from szepeviktor/patch-1
Browse files Browse the repository at this point in the history
Fix typo in createS3Resolver
  • Loading branch information
SerafimArts committed Jun 5, 2021
2 parents d99c81c + a97fa69 commit bf8f9bf
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -206,7 +206,7 @@ private function createS3Resolver(string $name, array $config): UriResolverInter
$client = new S3Client([
'version' => $config['version'] ?? 'latest',
'region' => $config['region'],
'endpoint' => $server['endpoint'] ?? null,
'endpoint' => $config['endpoint'] ?? null,
'credentials' => new Credentials(
$config['key'],
$config['secret'],
Expand Down

0 comments on commit bf8f9bf

Please sign in to comment.