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
Pull Request — master (#67)
by Yong
05:43
created

VnoPayCallBackNotify   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 14
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A withParamStr() 0 6 1
1
<?php
2
3
namespace AlibabaCloud\Bss\V20140714;
4
5
use AlibabaCloud\Rpc;
6
7
class V20140714Rpc extends Rpc
8
{
9
    /** @var string */
10
    public $product = 'Bss';
11
12
    /** @var string */
13
    public $version = '2014-07-14';
14
15
    /** @var string */
16
    public $method = 'POST';
17
}
18
19
/**
20
 * @method string getParamStr()
21
 */
22
class OpenCallback extends V20140714Rpc
23
{
24
25
    /**
26
     * @param string $value
27
     *
28
     * @return $this
29
     */
30
    public function withParamStr($value)
31
    {
32
        $this->data['ParamStr'] = $value;
33
        $this->options['query']['paramStr'] = $value;
34
35
        return $this;
36
    }
37
}
38
39
/**
40
 * @method string getParamStr()
41
 */
42
class QueryForCssOrder extends V20140714Rpc
43
{
44
45
    /**
46
     * @param string $value
47
     *
48
     * @return $this
49
     */
50
    public function withParamStr($value)
51
    {
52
        $this->data['ParamStr'] = $value;
53
        $this->options['query']['paramStr'] = $value;
54
55
        return $this;
56
    }
57
}
58
59
/**
60
 * @method string getParamStr()
61
 */
62
class CreateOrder extends V20140714Rpc
63
{
64
65
    /**
66
     * @param string $value
67
     *
68
     * @return $this
69
     */
70
    public function withParamStr($value)
71
    {
72
        $this->data['ParamStr'] = $value;
73
        $this->options['query']['paramStr'] = $value;
74
75
        return $this;
76
    }
77
}
78
79
/**
80
 * @method string getParamStr()
81
 */
82
class VnoPayCallBackNotify extends V20140714Rpc
83
{
84
85
    /**
86
     * @param string $value
87
     *
88
     * @return $this
89
     */
90
    public function withParamStr($value)
91
    {
92
        $this->data['ParamStr'] = $value;
93
        $this->options['query']['paramStr'] = $value;
94
95
        return $this;
96
    }
97
}
98
99
/**
100
 * @method string getParamStr()
101
 */
102
class VnoBatchRefundOrder extends V20140714Rpc
103
{
104
105
    /**
106
     * @param string $value
107
     *
108
     * @return $this
109
     */
110
    public function withParamStr($value)
111
    {
112
        $this->data['ParamStr'] = $value;
113
        $this->options['query']['paramStr'] = $value;
114
115
        return $this;
116
    }
117
}
118
119
/**
120
 * @method string getProductCode()
121
 * @method string getOwnerId()
122
 */
123
class SubscriptionCreateOrderApi extends V20140714Rpc
124
{
125
126
    /**
127
     * @param string $value
128
     *
129
     * @return $this
130
     */
131
    public function withProductCode($value)
132
    {
133
        $this->data['ProductCode'] = $value;
134
        $this->options['query']['productCode'] = $value;
135
136
        return $this;
137
    }
138
139
    /**
140
     * @param string $value
141
     *
142
     * @return $this
143
     */
144
    public function withOwnerId($value)
145
    {
146
        $this->data['OwnerId'] = $value;
147
        $this->options['query']['ownerId'] = $value;
148
149
        return $this;
150
    }
151
}
152
153
class DescribeCashDetail extends V20140714Rpc
154
{
155
    /** @var string */
156
    public $scheme = 'https';
157
}
158
159
/**
160
 * @method string getBusinessStatus()
161
 * @method $this withBusinessStatus($value)
162
 * @method string getResourceOwnerId()
163
 * @method $this withResourceOwnerId($value)
164
 * @method string getResourceId()
165
 * @method $this withResourceId($value)
166
 * @method string getResourceOwnerAccount()
167
 * @method $this withResourceOwnerAccount($value)
168
 * @method string getOwnerAccount()
169
 * @method $this withOwnerAccount($value)
170
 * @method string getOwnerId()
171
 * @method $this withOwnerId($value)
172
 * @method string getResourceType()
173
 * @method $this withResourceType($value)
174
 */
175
class SetResourceBusinessStatus extends V20140714Rpc
176
{
177
}
178
179
/**
180
 * @method string getStartDeliveryTime()
181
 * @method $this withStartDeliveryTime($value)
182
 * @method string getPageSize()
183
 * @method $this withPageSize($value)
184
 * @method string getEndDeliveryTime()
185
 * @method $this withEndDeliveryTime($value)
186
 * @method string getPageNum()
187
 * @method $this withPageNum($value)
188
 * @method string getStatus()
189
 * @method $this withStatus($value)
190
 */
191
class DescribeCouponList extends V20140714Rpc
192
{
193
    /** @var string */
194
    public $scheme = 'https';
195
}
196
197
/**
198
 * @method string getCouponNumber()
199
 * @method $this withCouponNumber($value)
200
 */
201
class DescribeCouponDetail extends V20140714Rpc
202
{
203
    /** @var string */
204
    public $scheme = 'https';
205
206
    /** @var string */
207
    public $method = 'GET';
208
}
209