init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Gateways\Alipay;
|
||||
|
||||
use Yansongda\Pay\Contracts\GatewayInterface;
|
||||
use Yansongda\Pay\Events;
|
||||
use Yansongda\Pay\Exceptions\GatewayException;
|
||||
use Yansongda\Pay\Exceptions\InvalidConfigException;
|
||||
use Yansongda\Pay\Exceptions\InvalidSignException;
|
||||
use Yansongda\Supports\Collection;
|
||||
|
||||
class TransferGateway implements GatewayInterface
|
||||
{
|
||||
/**
|
||||
* Pay an order.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param string $endpoint
|
||||
*
|
||||
* @throws GatewayException
|
||||
* @throws InvalidConfigException
|
||||
* @throws InvalidSignException
|
||||
*/
|
||||
public function pay($endpoint, ?array $payload): Collection
|
||||
{
|
||||
$payload['method'] = 'alipay.fund.trans.uni.transfer';
|
||||
$payload['sign'] = Support::generateSign($payload);
|
||||
|
||||
Events::dispatch(new Events\PayStarted('Alipay', 'Transfer', $endpoint, $payload));
|
||||
|
||||
return Support::requestApi($payload);
|
||||
}
|
||||
|
||||
/**
|
||||
* Find.
|
||||
*
|
||||
* @author yansongda <me@yansongda.cn>
|
||||
*
|
||||
* @param $order
|
||||
*/
|
||||
public function find($order): array
|
||||
{
|
||||
return [
|
||||
'method' => 'alipay.fund.trans.order.query',
|
||||
'biz_content' => json_encode(is_array($order) ? $order : ['out_biz_no' => $order]),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user