Skip to content

Commit

Permalink
修复新建卡券时, 填写高级信息时的字段缺失
Browse files Browse the repository at this point in the history
点击查看[微信创建卡券文档](https://mp.weixin.qq.com/wiki?action=doc&id=mp1451025056&t=0.    3971944842969317#2.6)
  • Loading branch information
张哲 committed Mar 31, 2017
1 parent cef1361 commit 9e1a727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Card/Card.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function create($cardType = 'member_card', array $baseInfo = [], array $e
$params = [
'card' => [
'card_type' => strtoupper($cardType),
strtolower($cardType) => array_merge(['base_info' => $baseInfo], $especial, $advancedInfo),
strtolower($cardType) => array_merge(['base_info' => $baseInfo], $especial, ['advanced_info' => $advancedInfo]),
],
];

Expand Down

0 comments on commit 9e1a727

Please sign in to comment.