Completed
Push — master ( d26310...92cf81 )
by Songda
14s queued 10s
created

RefundGateway::find()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8

Duplication

Lines 8
Ratio 100 %

Importance

Changes 0
Metric Value
dl 8
loc 8
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 1
1
<?php
2
3
namespace Yansongda\Pay\Gateways\Wechat;
4
5
class RefundGateway
6
{
7
    /**
8
     * Find.
9
     *
10
     * @author yansongda <[email protected]>
11
     *
12
     * @param $order
13
     *
14
     * @return array
15
     */
16 View Code Duplication
    public function find($order): array
0 ignored issues
show
Duplication introduced by
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...
17
    {
18
        return [
19
            'endpoint' => 'pay/refundquery',
20
            'order'    => is_array($order) ? $order : ['out_trade_no' => $order],
21
            'cert'     => false,
22
        ];
23
    }
24
}
25