fix: 添加 shortCodeDecode 缺失的 return 语句和闭合括号

feat/phase4-ticket-wallet
Council 2026-04-23 14:44:19 +08:00
parent ac676d00be
commit c3261e553d
1 changed files with 4 additions and 1 deletions

View File

@ -474,7 +474,10 @@ class BaseService
// 转回 base36 字符串(不填充)
$ticket_id = intval(base_convert($ticket_int, 10, 36), 36);
return ['goods_id' => $goods_id, 'ticket_id' => $ticket_id];
return [
'goods_id' => $goods_id,
'ticket_id' => $ticket_id,
];
}
/**