fix: 添加 shortCodeDecode 缺失的 return 语句和闭合括号
parent
ac676d00be
commit
c3261e553d
|
|
@ -474,7 +474,10 @@ class BaseService
|
||||||
// 转回 base36 字符串(不填充)
|
// 转回 base36 字符串(不填充)
|
||||||
$ticket_id = intval(base_convert($ticket_int, 10, 36), 36);
|
$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,
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue