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 ( af3991...b221ac )
by
unknown
07:17
created

InitSmartVerify::withUserId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
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 getIp()
66
 * @method string getMobile()
67
 * @method string getUserId()
68
 * @method string getMode()
69
 * @method string getOuterOrderNo()
70
 * @method string getCertType()
71
 * @method string getSceneId()
72
 * @method string getMetaInfo()
73
 */
74
class InitSmartVerify extends Rpc
75
{
76
77
    /**
78
     * @param string $value
79
     *
80
     * @return $this
81
     */
82
    public function withIp($value)
83
    {
84
        $this->data['Ip'] = $value;
85
        $this->options['form_params']['Ip'] = $value;
86
87
        return $this;
88
    }
89
90
    /**
91
     * @param string $value
92
     *
93
     * @return $this
94
     */
95
    public function withMobile($value)
96
    {
97
        $this->data['Mobile'] = $value;
98
        $this->options['form_params']['Mobile'] = $value;
99
100
        return $this;
101
    }
102
103
    /**
104
     * @param string $value
105
     *
106
     * @return $this
107
     */
108
    public function withUserId($value)
109
    {
110
        $this->data['UserId'] = $value;
111
        $this->options['form_params']['UserId'] = $value;
112
113
        return $this;
114
    }
115
116
    /**
117
     * @param string $value
118
     *
119
     * @return $this
120
     */
121
    public function withMode($value)
122
    {
123
        $this->data['Mode'] = $value;
124
        $this->options['form_params']['Mode'] = $value;
125
126
        return $this;
127
    }
128
129
    /**
130
     * @param string $value
131
     *
132
     * @return $this
133
     */
134
    public function withOuterOrderNo($value)
135
    {
136
        $this->data['OuterOrderNo'] = $value;
137
        $this->options['form_params']['OuterOrderNo'] = $value;
138
139
        return $this;
140
    }
141
142
    /**
143
     * @param string $value
144
     *
145
     * @return $this
146
     */
147
    public function withCertType($value)
148
    {
149
        $this->data['CertType'] = $value;
150
        $this->options['form_params']['CertType'] = $value;
151
152
        return $this;
153
    }
154
155
    /**
156
     * @param string $value
157
     *
158
     * @return $this
159
     */
160
    public function withSceneId($value)
161
    {
162
        $this->data['SceneId'] = $value;
163
        $this->options['form_params']['SceneId'] = $value;
164
165
        return $this;
166
    }
167
168
    /**
169
     * @param string $value
170
     *
171
     * @return $this
172
     */
173
    public function withMetaInfo($value)
174
    {
175
        $this->data['MetaInfo'] = $value;
176
        $this->options['form_params']['MetaInfo'] = $value;
177
178
        return $this;
179
    }
180
}
181