Passed
Push — master ( c11190...b979a3 )
by ma
03:25
created

Alipay::__call()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
c 0
b 0
f 0
dl 0
loc 5
rs 10
cc 1
nc 1
nop 2
1
<?php
2
3
namespace tinymeng\Chinaums\Provider;
4
5
/**
6
 * Alipay
7
 * @method static \tinymeng\Chinaums\Service\Alipay\App App(array $params) App支付
8
 * @method static \tinymeng\Chinaums\Service\Alipay\Close Close(array $params) 关闭支付
9
 * @method static \tinymeng\Chinaums\Service\Alipay\H5 H5(array $params) H5支付
10
 * @method static \tinymeng\Chinaums\Service\Alipay\Mini Mini(array $params) 小程序支付
11
 * @method static \tinymeng\Chinaums\Service\Alipay\Pos Pos(array $params) 刷卡支付
12
 * @method static \tinymeng\Chinaums\Service\Alipay\PosRefund PosRefund(array $params) 刷卡退款
13
 * @method static \tinymeng\Chinaums\Service\Alipay\Query Query(array $params) 查询订单
14
 * @method static \tinymeng\Chinaums\Service\Alipay\Refund Refund(array $params) 退款
15
 * @method static \tinymeng\Chinaums\Service\Alipay\RefundQuery RefundQuery(array $params) 退款查询
16
 */
17
class Alipay extends BaseProvider
18
{
19
20
}
21