GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 08cbc8...36b06c )
by Yong
02:03 queued 13s
created

MonthlyPaymentCheckOrder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 5
dl 0
loc 17
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A withData() 0 6 1
1
<?php
2
3
namespace AlibabaCloud\CF\V20151127;
4
5
use AlibabaCloud\Rpc;
6
7
class V20151127Rpc extends Rpc
8
{
9
    /** @var string */
10
    public $product = 'CF';
11
12
    /** @var string */
13
    public $version = '2015-11-27';
14
15
    /** @var string */
16
    public $method = 'POST';
17
18
    /** @var string */
19
    public $scheme = 'https';
20
21
    /** @var string */
22
    public $serviceCode = 'cf';
23
}
24
25
/**
26
 * @method string getData()
27
 */
28
class MonthlyPaymentCheckOrder extends V20151127Rpc
29
{
30
    /** @var string */
31
    public $scheme = 'http';
32
33
34
    /**
35
     * @param string $value
36
     *
37
     * @return $this
38
     */
39
    public function withData($value)
40
    {
41
        $this->data['Data'] = $value;
42
        $this->options['query']['data'] = $value;
43
44
        return $this;
45
    }
46
}
47
48
/**
49
 * @method string getData()
50
 */
51
class CFMonthlyPayment extends V20151127Rpc
52
{
53
    /** @var string */
54
    public $scheme = 'http';
55
56
57
    /**
58
     * @param string $value
59
     *
60
     * @return $this
61
     */
62
    public function withData($value)
63
    {
64
        $this->data['Data'] = $value;
65
        $this->options['query']['data'] = $value;
66
67
        return $this;
68
    }
69
}
70
71
/**
72
 * @method string getIdType()
73
 * @method $this withIdType($value)
74
 * @method string getIdCardNumber()
75
 * @method $this withIdCardNumber($value)
76
 * @method string getIp()
77
 * @method $this withIp($value)
78
 * @method string getPhoneNumber()
79
 * @method $this withPhoneNumber($value)
80
 * @method string getSource()
81
 * @method $this withSource($value)
82
 * @method string getUserId()
83
 * @method $this withUserId($value)
84
 * @method string getEmail()
85
 * @method $this withEmail($value)
86
 * @method string getBankCardNumber()
87
 * @method $this withBankCardNumber($value)
88
 * @method string getScene()
89
 * @method $this withScene($value)
90
 */
91
class GetRating extends V20151127Rpc
92
{
93
}
94
95
/**
96
 * @method string getEventId()
97
 * @method $this withEventId($value)
98
 * @method string getUserFeedback()
99
 * @method $this withUserFeedback($value)
100
 * @method string getAliDecision()
101
 * @method $this withAliDecision($value)
102
 * @method string getCustomerDecision()
103
 * @method $this withCustomerDecision($value)
104
 * @method string getDenyReason()
105
 * @method $this withDenyReason($value)
106
 * @method string getAppToken()
107
 * @method $this withAppToken($value)
108
 * @method string getAppKey()
109
 * @method $this withAppKey($value)
110
 * @method string getCFTimestamp()
111
 * @method $this withCFTimestamp($value)
112
 */
113
class CfAccountFeedback extends V20151127Rpc
114
{
115
}
116
117
/**
118
 * @method string getIp()
119
 * @method $this withIp($value)
120
 * @method string getSceneId()
121
 * @method $this withSceneId($value)
122
 * @method string getPhoneNumber()
123
 * @method $this withPhoneNumber($value)
124
 * @method string getAppToken()
125
 * @method $this withAppToken($value)
126
 * @method string getAppKey()
127
 * @method $this withAppKey($value)
128
 * @method string getCFTimestamp()
129
 * @method $this withCFTimestamp($value)
130
 * @method string getTrans()
131
 * @method $this withTrans($value)
132
 */
133
class CfAccountQuery extends V20151127Rpc
134
{
135
}
136
137
/**
138
 * @method string getTokenId()
139
 * @method $this withTokenId($value)
140
 * @method string getSceneId()
141
 * @method $this withSceneId($value)
142
 * @method string getAppKey()
143
 * @method $this withAppKey($value)
144
 * @method string getSerialNo()
145
 * @method $this withSerialNo($value)
146
 * @method string getTimeStamp()
147
 * @method $this withTimeStamp($value)
148
 * @method string getTrans()
149
 * @method $this withTrans($value)
150
 */
151
class QuerySimple extends V20151127Rpc
152
{
153
}
154
155
/**
156
 * @method string getSig()
157
 * @method $this withSig($value)
158
 * @method string getRemoteIp()
159
 * @method $this withRemoteIp($value)
160
 * @method string getSerno()
161
 * @method $this withSerno($value)
162
 * @method string getSceneId()
163
 * @method $this withSceneId($value)
164
 * @method string getAppKey()
165
 * @method $this withAppKey($value)
166
 * @method string getSessionId()
167
 * @method $this withSessionId($value)
168
 * @method string getToken()
169
 * @method $this withToken($value)
170
 */
171
class Authenticate extends V20151127Rpc
172
{
173
}
174