Completed
Push — master ( 026505...b42306 )
by Songda
02:02
created

src/Gateways/Alipay/TransferGateway.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Yansongda\Pay\Gateways\Alipay;
4
5
use Yansongda\Pay\Contracts\GatewayInterface;
6
use Yansongda\Pay\Events;
7
use Yansongda\Pay\Exceptions\GatewayException;
8
use Yansongda\Pay\Exceptions\InvalidConfigException;
9
use Yansongda\Pay\Exceptions\InvalidSignException;
10
use Yansongda\Supports\Collection;
11
12
class TransferGateway implements GatewayInterface
13
{
14
    /**
15
     * Pay an order.
16
     *
17
     * @author yansongda <[email protected]>
18
     *
19
     * @param string $endpoint
20
     * @param array  $payload
21
     *
22
     * @throws GatewayException
23
     * @throws InvalidConfigException
24
     * @throws InvalidSignException
25
     *
26
     * @return Collection
27
     */
28 View Code Duplication
    public function pay($endpoint, array $payload): Collection
0 ignored issues
show
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
29
    {
30
        $payload['method'] = 'alipay.fund.trans.toaccount.transfer';
31
        $payload['biz_content'] = json_encode(array_merge(
32
            json_decode($payload['biz_content'], true),
33
            ['product_code' => '']
34
        ));
35
        $payload['sign'] = Support::generateSign($payload);
36
37
        Events::dispatch(Events::PAY_STARTED, new Events\PayStarted('Alipay', 'Transfer', $endpoint, $payload));
38
39
        return Support::requestApi($payload);
40
    }
41
42
    /**
43
     * Find.
44
     *
45
     * @author yansongda <[email protected]>
46
     *
47
     * @param $order
48
     *
49
     * @return array
50
     */
51
    public function find($order): array
52
    {
53
        return [
54
            'method'      => 'alipay.fund.trans.order.query',
55
            'biz_content' => json_encode(is_array($order) ? $order : ['out_biz_no' => $order]),
56
        ];
57
    }
58
}
59