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.
Test Failed
Push — master ( a3c5f0...56ccb0 )
by
unknown
05:45
created

InitSmartVerify::withFacePictureBase64()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
c 0
b 0
f 0
dl 0
loc 6
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\Cloudauth\V20200618;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method DescribeSmartVerify describeSmartVerify(array $options = [])
9
 * @method InitSmartVerify initSmartVerify(array $options = [])
10
 */
11
class CloudauthApiResolver extends ApiResolver
12
{
13
}
14
15
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
16
{
17
    /** @var string */
18
    public $product = 'Cloudauth';
19
20
    /** @var string */
21
    public $version = '2020-06-18';
22
23
    /** @var string */
24
    public $method = 'POST';
25
26
    /** @var string */
27
    public $serviceCode = 'cloudauth';
28
}
29
30
/**
31
 * @method string getSceneId()
32
 * @method string getCertifyId()
33
 */
34
class DescribeSmartVerify extends Rpc
35
{
36
37
    /**
38
     * @param string $value
39
     *
40
     * @return $this
41
     */
42
    public function withSceneId($value)
43
    {
44
        $this->data['SceneId'] = $value;
45
        $this->options['form_params']['SceneId'] = $value;
46
47
        return $this;
48
    }
49
50
    /**
51
     * @param string $value
52
     *
53
     * @return $this
54
     */
55
    public function withCertifyId($value)
56
    {
57
        $this->data['CertifyId'] = $value;
58
        $this->options['form_params']['CertifyId'] = $value;
59
60
        return $this;
61
    }
62
}
63
64
/**
65
 * @method string getUserId()
66
 * @method string getCertifyId()
67
 * @method string getFacePictureBase64()
68
 * @method string getMode()
69
 * @method string getCertNo()
70
 * @method string getOuterOrderNo()
71
 * @method string getCertType()
72
 * @method string getMetaInfo()
73
 * @method string getOcr()
74
 * @method string getOssObjectName()
75
 * @method string getFacePictureUrl()
76
 * @method string getIp()
77
 * @method string getCertName()
78
 * @method string getMobile()
79
 * @method string getSceneId()
80
 * @method string getCallbackToken()
81
 * @method string getOssBucketName()
82
 * @method string getCallbackUrl()
83
 */
84
class InitSmartVerify extends Rpc
85
{
86
87
    /**
88
     * @param string $value
89
     *
90
     * @return $this
91
     */
92
    public function withUserId($value)
93
    {
94
        $this->data['UserId'] = $value;
95
        $this->options['form_params']['UserId'] = $value;
96
97
        return $this;
98
    }
99
100
    /**
101
     * @param string $value
102
     *
103
     * @return $this
104
     */
105
    public function withCertifyId($value)
106
    {
107
        $this->data['CertifyId'] = $value;
108
        $this->options['form_params']['CertifyId'] = $value;
109
110
        return $this;
111
    }
112
113
    /**
114
     * @param string $value
115
     *
116
     * @return $this
117
     */
118
    public function withFacePictureBase64($value)
119
    {
120
        $this->data['FacePictureBase64'] = $value;
121
        $this->options['form_params']['FacePictureBase64'] = $value;
122
123
        return $this;
124
    }
125
126
    /**
127
     * @param string $value
128
     *
129
     * @return $this
130
     */
131
    public function withMode($value)
132
    {
133
        $this->data['Mode'] = $value;
134
        $this->options['form_params']['Mode'] = $value;
135
136
        return $this;
137
    }
138
139
    /**
140
     * @param string $value
141
     *
142
     * @return $this
143
     */
144
    public function withCertNo($value)
145
    {
146
        $this->data['CertNo'] = $value;
147
        $this->options['form_params']['CertNo'] = $value;
148
149
        return $this;
150
    }
151
152
    /**
153
     * @param string $value
154
     *
155
     * @return $this
156
     */
157
    public function withOuterOrderNo($value)
158
    {
159
        $this->data['OuterOrderNo'] = $value;
160
        $this->options['form_params']['OuterOrderNo'] = $value;
161
162
        return $this;
163
    }
164
165
    /**
166
     * @param string $value
167
     *
168
     * @return $this
169
     */
170
    public function withCertType($value)
171
    {
172
        $this->data['CertType'] = $value;
173
        $this->options['form_params']['CertType'] = $value;
174
175
        return $this;
176
    }
177
178
    /**
179
     * @param string $value
180
     *
181
     * @return $this
182
     */
183
    public function withMetaInfo($value)
184
    {
185
        $this->data['MetaInfo'] = $value;
186
        $this->options['form_params']['MetaInfo'] = $value;
187
188
        return $this;
189
    }
190
191
    /**
192
     * @param string $value
193
     *
194
     * @return $this
195
     */
196
    public function withOcr($value)
197
    {
198
        $this->data['Ocr'] = $value;
199
        $this->options['form_params']['Ocr'] = $value;
200
201
        return $this;
202
    }
203
204
    /**
205
     * @param string $value
206
     *
207
     * @return $this
208
     */
209
    public function withOssObjectName($value)
210
    {
211
        $this->data['OssObjectName'] = $value;
212
        $this->options['form_params']['OssObjectName'] = $value;
213
214
        return $this;
215
    }
216
217
    /**
218
     * @param string $value
219
     *
220
     * @return $this
221
     */
222
    public function withFacePictureUrl($value)
223
    {
224
        $this->data['FacePictureUrl'] = $value;
225
        $this->options['form_params']['FacePictureUrl'] = $value;
226
227
        return $this;
228
    }
229
230
    /**
231
     * @param string $value
232
     *
233
     * @return $this
234
     */
235
    public function withIp($value)
236
    {
237
        $this->data['Ip'] = $value;
238
        $this->options['form_params']['Ip'] = $value;
239
240
        return $this;
241
    }
242
243
    /**
244
     * @param string $value
245
     *
246
     * @return $this
247
     */
248
    public function withCertName($value)
249
    {
250
        $this->data['CertName'] = $value;
251
        $this->options['form_params']['CertName'] = $value;
252
253
        return $this;
254
    }
255
256
    /**
257
     * @param string $value
258
     *
259
     * @return $this
260
     */
261
    public function withMobile($value)
262
    {
263
        $this->data['Mobile'] = $value;
264
        $this->options['form_params']['Mobile'] = $value;
265
266
        return $this;
267
    }
268
269
    /**
270
     * @param string $value
271
     *
272
     * @return $this
273
     */
274
    public function withSceneId($value)
275
    {
276
        $this->data['SceneId'] = $value;
277
        $this->options['form_params']['SceneId'] = $value;
278
279
        return $this;
280
    }
281
282
    /**
283
     * @param string $value
284
     *
285
     * @return $this
286
     */
287
    public function withCallbackToken($value)
288
    {
289
        $this->data['CallbackToken'] = $value;
290
        $this->options['form_params']['CallbackToken'] = $value;
291
292
        return $this;
293
    }
294
295
    /**
296
     * @param string $value
297
     *
298
     * @return $this
299
     */
300
    public function withOssBucketName($value)
301
    {
302
        $this->data['OssBucketName'] = $value;
303
        $this->options['form_params']['OssBucketName'] = $value;
304
305
        return $this;
306
    }
307
308
    /**
309
     * @param string $value
310
     *
311
     * @return $this
312
     */
313
    public function withCallbackUrl($value)
314
    {
315
        $this->data['CallbackUrl'] = $value;
316
        $this->options['form_params']['CallbackUrl'] = $value;
317
318
        return $this;
319
    }
320
}
321