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

RefundGateway   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 40 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 8
loc 20
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A find() 8 8 2

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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