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 ( 0a3b17...90ee08 )
by
unknown
07:31
created

DeleteMeeting   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A withMeetingUUID() 0 6 1
1
<?php
2
3
namespace AlibabaCloud\Aliyuncvc\V20191030;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ActiveMeeting activeMeeting(array $options = [])
9
 * @method CreateEvaluation createEvaluation(array $options = [])
10
 * @method CreateMeeting createMeeting(array $options = [])
11
 * @method CreateUser createUser(array $options = [])
12
 * @method DeleteMeeting deleteMeeting(array $options = [])
13
 * @method DeleteUser deleteUser(array $options = [])
14
 * @method GetMeeting getMeeting(array $options = [])
15
 * @method GetUser getUser(array $options = [])
16
 * @method JoinMeeting joinMeeting(array $options = [])
17
 * @method ListEvaluations listEvaluations(array $options = [])
18
 * @method ListMembers listMembers(array $options = [])
19
 * @method ListUsers listUsers(array $options = [])
20
 */
21
class AliyuncvcApiResolver extends ApiResolver
22
{
23
}
24
25
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
26
{
27
    /** @var string */
28
    public $product = 'aliyuncvc';
29
30
    /** @var string */
31
    public $version = '2019-10-30';
32
33
    /** @var string */
34
    public $method = 'POST';
35
36
    /** @var string */
37
    public $serviceCode = 'aliyuncvc';
38
}
39
40
/**
41
 * @method string getMeetingUUID()
42
 * @method $this withMeetingUUID($value)
43
 * @method string getMeetingCode()
44
 * @method $this withMeetingCode($value)
45
 */
46
class ActiveMeeting extends Rpc
47
{
48
}
49
50
/**
51
 * @method string getCreateTime()
52
 * @method $this withCreateTime($value)
53
 * @method string getMemo()
54
 * @method $this withMemo($value)
55
 * @method string getDescription()
56
 * @method $this withDescription($value)
57
 * @method string getMemberUUID()
58
 * @method $this withMemberUUID($value)
59
 * @method string getUserId()
60
 * @method $this withUserId($value)
61
 * @method string getEvaluation()
62
 * @method $this withEvaluation($value)
63
 * @method string getScore()
64
 * @method $this withScore($value)
65
 * @method string getMeetingUUID()
66
 * @method $this withMeetingUUID($value)
67
 * @method string getAppId()
68
 * @method $this withAppId($value)
69
 */
70
class CreateEvaluation extends Rpc
71
{
72
}
73
74
/**
75
 * @method string getMeetingName()
76
 * @method string getUserId()
77
 */
78
class CreateMeeting extends Rpc
79
{
80
81
    /**
82
     * @param string $value
83
     *
84
     * @return $this
85
     */
86
    public function withMeetingName($value)
87
    {
88
        $this->data['MeetingName'] = $value;
89
        $this->options['form_params']['MeetingName'] = $value;
90
91
        return $this;
92
    }
93
94
    /**
95
     * @param string $value
96
     *
97
     * @return $this
98
     */
99
    public function withUserId($value)
100
    {
101
        $this->data['UserId'] = $value;
102
        $this->options['form_params']['UserId'] = $value;
103
104
        return $this;
105
    }
106
}
107
108
/**
109
 * @method string getCount()
110
 * @method string getUserInfo()
111
 */
112
class CreateUser extends Rpc
113
{
114
115
    /**
116
     * @param string $value
117
     *
118
     * @return $this
119
     */
120
    public function withCount($value)
121
    {
122
        $this->data['Count'] = $value;
123
        $this->options['form_params']['Count'] = $value;
124
125
        return $this;
126
    }
127
128
    /**
129
     * @param string $value
130
     *
131
     * @return $this
132
     */
133
    public function withUserInfo($value)
134
    {
135
        $this->data['UserInfo'] = $value;
136
        $this->options['form_params']['UserInfo'] = $value;
137
138
        return $this;
139
    }
140
}
141
142
/**
143
 * @method string getMeetingUUID()
144
 */
145
class DeleteMeeting extends Rpc
146
{
147
148
    /**
149
     * @param string $value
150
     *
151
     * @return $this
152
     */
153
    public function withMeetingUUID($value)
154
    {
155
        $this->data['MeetingUUID'] = $value;
156
        $this->options['form_params']['MeetingUUID'] = $value;
157
158
        return $this;
159
    }
160
}
161
162
/**
163
 * @method string getCount()
164
 * @method string getUserInfo()
165
 */
166
class DeleteUser extends Rpc
167
{
168
169
    /**
170
     * @param string $value
171
     *
172
     * @return $this
173
     */
174
    public function withCount($value)
175
    {
176
        $this->data['Count'] = $value;
177
        $this->options['form_params']['Count'] = $value;
178
179
        return $this;
180
    }
181
182
    /**
183
     * @param string $value
184
     *
185
     * @return $this
186
     */
187
    public function withUserInfo($value)
188
    {
189
        $this->data['UserInfo'] = $value;
190
        $this->options['form_params']['UserInfo'] = $value;
191
192
        return $this;
193
    }
194
}
195
196
/**
197
 * @method string getMeetingUUID()
198
 */
199
class GetMeeting extends Rpc
200
{
201
202
    /**
203
     * @param string $value
204
     *
205
     * @return $this
206
     */
207
    public function withMeetingUUID($value)
208
    {
209
        $this->data['MeetingUUID'] = $value;
210
        $this->options['form_params']['MeetingUUID'] = $value;
211
212
        return $this;
213
    }
214
}
215
216
/**
217
 * @method string getUserId()
218
 * @method $this withUserId($value)
219
 */
220
class GetUser extends Rpc
221
{
222
}
223
224
/**
225
 * @method string getMeetingCode()
226
 * @method string getUserId()
227
 */
228
class JoinMeeting extends Rpc
229
{
230
231
    /**
232
     * @param string $value
233
     *
234
     * @return $this
235
     */
236
    public function withMeetingCode($value)
237
    {
238
        $this->data['MeetingCode'] = $value;
239
        $this->options['form_params']['MeetingCode'] = $value;
240
241
        return $this;
242
    }
243
244
    /**
245
     * @param string $value
246
     *
247
     * @return $this
248
     */
249
    public function withUserId($value)
250
    {
251
        $this->data['UserId'] = $value;
252
        $this->options['form_params']['UserId'] = $value;
253
254
        return $this;
255
    }
256
}
257
258
class ListEvaluations extends Rpc
259
{
260
}
261
262
/**
263
 * @method string getMeetingUUID()
264
 * @method $this withMeetingUUID($value)
265
 */
266
class ListMembers extends Rpc
267
{
268
}
269
270
/**
271
 * @method string getPageSize()
272
 * @method $this withPageSize($value)
273
 * @method string getPageNumber()
274
 * @method $this withPageNumber($value)
275
 */
276
class ListUsers extends Rpc
277
{
278
}
279