Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
limingxinleo committed Apr 5, 2023
1 parent 41ad8af commit 7486260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugin/Wechat/Pay/Common/InvokePrepayV2Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ protected function getSign(Collection $invokeConfig, array $params): string

$data = $invokeConfig->toArray();
ksort($data);
$contents = implode('&', $data).'&key='.$secret;
$contents = http_build_query($data) . '&key=' . $secret;

return md5($contents);
}
Expand Down

0 comments on commit 7486260

Please sign in to comment.