Skip to content

Commit 890ffa0

Browse files
authored
bugfix: update getClientContextParams
1 parent aefd3ed commit 890ffa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AwsClient.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ private function setClientContextParams($args)
548548
if (!empty($paramDefinitions = $api->getClientContextParams())) {
549549
foreach($paramDefinitions as $paramName => $paramValue) {
550550
if (isset($args[$paramName])) {
551-
$result[$paramName] = $args[$paramName];
551+
$resolvedParams[$paramName] = $args[$paramName];
552552
}
553553
}
554554
}

0 commit comments

Comments
 (0)