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 ( 62d129...62a85a )
by
unknown
06:01
created

ElementSmartVerify::withCertUrl()   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
dl 0
loc 6
rs 10
c 0
b 0
f 0
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 ElementSmartVerify elementSmartVerify(array $options = [])
10
 * @method InitSmartVerify initSmartVerify(array $options = [])
11
 */
12
class CloudauthApiResolver extends ApiResolver
13
{
14
}
15
16
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
17
{
18
    /** @var string */
19
    public $product = 'Cloudauth';
20
21
    /** @var string */
22
    public $version = '2020-06-18';
23
24
    /** @var string */
25
    public $method = 'POST';
26
27
    /** @var string */
28
    public $serviceCode = 'cloudauth';
29
}
30
31
/**
32
 * @method string getSceneId()
33
 * @method string getCertifyId()
34
 */
35
class DescribeSmartVerify extends Rpc
36
{
37
38
    /**
39
     * @param string $value
40
     *
41
     * @return $this
42
     */
43
    public function withSceneId($value)
44
    {
45
        $this->data['SceneId'] = $value;
46
        $this->options['form_params']['SceneId'] = $value;
47
48
        return $this;
49
    }
50
51
    /**
52
     * @param string $value
53
     *
54
     * @return $this
55
     */
56
    public function withCertifyId($value)
57
    {
58
        $this->data['CertifyId'] = $value;
59
        $this->options['form_params']['CertifyId'] = $value;
60
61
        return $this;
62
    }
63
}
64
65
/**
66
 * @method string getCertFile()
67
 * @method string getCertName()
68
 * @method string getMode()
69
 * @method string getCertNo()
70
 * @method string getOuterOrderNo()
71
 * @method string getCertUrl()
72
 * @method string getCertType()
73
 * @method string getSceneId()
74
 */
75
class ElementSmartVerify extends Rpc
76
{
77
78
    /**
79
     * @param string $value
80
     *
81
     * @return $this
82
     */
83
    public function withCertFile($value)
84
    {
85
        $this->data['CertFile'] = $value;
86
        $this->options['form_params']['CertFile'] = $value;
87
88
        return $this;
89
    }
90
91
    /**
92
     * @param string $value
93
     *
94
     * @return $this
95
     */
96
    public function withCertName($value)
97
    {
98
        $this->data['CertName'] = $value;
99
        $this->options['form_params']['CertName'] = $value;
100
101
        return $this;
102
    }
103
104
    /**
105
     * @param string $value
106
     *
107
     * @return $this
108
     */
109
    public function withMode($value)
110
    {
111
        $this->data['Mode'] = $value;
112
        $this->options['form_params']['Mode'] = $value;
113
114
        return $this;
115
    }
116
117
    /**
118
     * @param string $value
119
     *
120
     * @return $this
121
     */
122
    public function withCertNo($value)
123
    {
124
        $this->data['CertNo'] = $value;
125
        $this->options['form_params']['CertNo'] = $value;
126
127
        return $this;
128
    }
129
130
    /**
131
     * @param string $value
132
     *
133
     * @return $this
134
     */
135
    public function withOuterOrderNo($value)
136
    {
137
        $this->data['OuterOrderNo'] = $value;
138
        $this->options['form_params']['OuterOrderNo'] = $value;
139
140
        return $this;
141
    }
142
143
    /**
144
     * @param string $value
145
     *
146
     * @return $this
147
     */
148
    public function withCertUrl($value)
149
    {
150
        $this->data['CertUrl'] = $value;
151
        $this->options['form_params']['CertUrl'] = $value;
152
153
        return $this;
154
    }
155
156
    /**
157
     * @param string $value
158
     *
159
     * @return $this
160
     */
161
    public function withCertType($value)
162
    {
163
        $this->data['CertType'] = $value;
164
        $this->options['form_params']['CertType'] = $value;
165
166
        return $this;
167
    }
168
169
    /**
170
     * @param string $value
171
     *
172
     * @return $this
173
     */
174
    public function withSceneId($value)
175
    {
176
        $this->data['SceneId'] = $value;
177
        $this->options['form_params']['SceneId'] = $value;
178
179
        return $this;
180
    }
181
}
182
183
/**
184
 * @method string getUserId()
185
 * @method string getCertifyId()
186
 * @method string getFacePictureBase64()
187
 * @method string getMode()
188
 * @method string getCertNo()
189
 * @method string getOuterOrderNo()
190
 * @method string getCertType()
191
 * @method string getMetaInfo()
192
 * @method string getOcr()
193
 * @method string getOssObjectName()
194
 * @method string getFacePictureUrl()
195
 * @method string getIp()
196
 * @method string getCertName()
197
 * @method string getMobile()
198
 * @method string getSceneId()
199
 * @method string getCallbackToken()
200
 * @method string getOssBucketName()
201
 * @method string getCallbackUrl()
202
 */
203
class InitSmartVerify extends Rpc
204
{
205
206
    /**
207
     * @param string $value
208
     *
209
     * @return $this
210
     */
211
    public function withUserId($value)
212
    {
213
        $this->data['UserId'] = $value;
214
        $this->options['form_params']['UserId'] = $value;
215
216
        return $this;
217
    }
218
219
    /**
220
     * @param string $value
221
     *
222
     * @return $this
223
     */
224
    public function withCertifyId($value)
225
    {
226
        $this->data['CertifyId'] = $value;
227
        $this->options['form_params']['CertifyId'] = $value;
228
229
        return $this;
230
    }
231
232
    /**
233
     * @param string $value
234
     *
235
     * @return $this
236
     */
237
    public function withFacePictureBase64($value)
238
    {
239
        $this->data['FacePictureBase64'] = $value;
240
        $this->options['form_params']['FacePictureBase64'] = $value;
241
242
        return $this;
243
    }
244
245
    /**
246
     * @param string $value
247
     *
248
     * @return $this
249
     */
250
    public function withMode($value)
251
    {
252
        $this->data['Mode'] = $value;
253
        $this->options['form_params']['Mode'] = $value;
254
255
        return $this;
256
    }
257
258
    /**
259
     * @param string $value
260
     *
261
     * @return $this
262
     */
263
    public function withCertNo($value)
264
    {
265
        $this->data['CertNo'] = $value;
266
        $this->options['form_params']['CertNo'] = $value;
267
268
        return $this;
269
    }
270
271
    /**
272
     * @param string $value
273
     *
274
     * @return $this
275
     */
276
    public function withOuterOrderNo($value)
277
    {
278
        $this->data['OuterOrderNo'] = $value;
279
        $this->options['form_params']['OuterOrderNo'] = $value;
280
281
        return $this;
282
    }
283
284
    /**
285
     * @param string $value
286
     *
287
     * @return $this
288
     */
289
    public function withCertType($value)
290
    {
291
        $this->data['CertType'] = $value;
292
        $this->options['form_params']['CertType'] = $value;
293
294
        return $this;
295
    }
296
297
    /**
298
     * @param string $value
299
     *
300
     * @return $this
301
     */
302
    public function withMetaInfo($value)
303
    {
304
        $this->data['MetaInfo'] = $value;
305
        $this->options['form_params']['MetaInfo'] = $value;
306
307
        return $this;
308
    }
309
310
    /**
311
     * @param string $value
312
     *
313
     * @return $this
314
     */
315
    public function withOcr($value)
316
    {
317
        $this->data['Ocr'] = $value;
318
        $this->options['form_params']['Ocr'] = $value;
319
320
        return $this;
321
    }
322
323
    /**
324
     * @param string $value
325
     *
326
     * @return $this
327
     */
328
    public function withOssObjectName($value)
329
    {
330
        $this->data['OssObjectName'] = $value;
331
        $this->options['form_params']['OssObjectName'] = $value;
332
333
        return $this;
334
    }
335
336
    /**
337
     * @param string $value
338
     *
339
     * @return $this
340
     */
341
    public function withFacePictureUrl($value)
342
    {
343
        $this->data['FacePictureUrl'] = $value;
344
        $this->options['form_params']['FacePictureUrl'] = $value;
345
346
        return $this;
347
    }
348
349
    /**
350
     * @param string $value
351
     *
352
     * @return $this
353
     */
354
    public function withIp($value)
355
    {
356
        $this->data['Ip'] = $value;
357
        $this->options['form_params']['Ip'] = $value;
358
359
        return $this;
360
    }
361
362
    /**
363
     * @param string $value
364
     *
365
     * @return $this
366
     */
367
    public function withCertName($value)
368
    {
369
        $this->data['CertName'] = $value;
370
        $this->options['form_params']['CertName'] = $value;
371
372
        return $this;
373
    }
374
375
    /**
376
     * @param string $value
377
     *
378
     * @return $this
379
     */
380
    public function withMobile($value)
381
    {
382
        $this->data['Mobile'] = $value;
383
        $this->options['form_params']['Mobile'] = $value;
384
385
        return $this;
386
    }
387
388
    /**
389
     * @param string $value
390
     *
391
     * @return $this
392
     */
393
    public function withSceneId($value)
394
    {
395
        $this->data['SceneId'] = $value;
396
        $this->options['form_params']['SceneId'] = $value;
397
398
        return $this;
399
    }
400
401
    /**
402
     * @param string $value
403
     *
404
     * @return $this
405
     */
406
    public function withCallbackToken($value)
407
    {
408
        $this->data['CallbackToken'] = $value;
409
        $this->options['form_params']['CallbackToken'] = $value;
410
411
        return $this;
412
    }
413
414
    /**
415
     * @param string $value
416
     *
417
     * @return $this
418
     */
419
    public function withOssBucketName($value)
420
    {
421
        $this->data['OssBucketName'] = $value;
422
        $this->options['form_params']['OssBucketName'] = $value;
423
424
        return $this;
425
    }
426
427
    /**
428
     * @param string $value
429
     *
430
     * @return $this
431
     */
432
    public function withCallbackUrl($value)
433
    {
434
        $this->data['CallbackUrl'] = $value;
435
        $this->options['form_params']['CallbackUrl'] = $value;
436
437
        return $this;
438
    }
439
}
440