| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | <?phpnamespace 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]),        ];    }}
 |