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 ( 1958cf...31387c )
by
unknown
07:13
created

JoinMeeting::withMeetingCode()   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\Aliyuncvc\V20200330;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ActiveMeeting activeMeeting(array $options = [])
9
 * @method BatchDeleteDevices batchDeleteDevices(array $options = [])
10
 * @method CreateEvaluation createEvaluation(array $options = [])
11
 * @method CreateMeeting createMeeting(array $options = [])
12
 * @method CreateUser createUser(array $options = [])
13
 * @method GetMeeting getMeeting(array $options = [])
14
 * @method GetMembers getMembers(array $options = [])
15
 * @method JoinMeeting joinMeeting(array $options = [])
16
 */
17
class AliyuncvcApiResolver extends ApiResolver
18
{
19
}
20
21
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
22
{
23
    /** @var string */
24
    public $product = 'aliyuncvc';
25
26
    /** @var string */
27
    public $version = '2020-03-30';
28
29
    /** @var string */
30
    public $method = 'POST';
31
32
    /** @var string */
33
    public $serviceCode = 'aliyuncvc';
34
}
35
36
/**
37
 * @method string getMeetingUUID()
38
 * @method $this withMeetingUUID($value)
39
 * @method string getMeetingCode()
40
 * @method $this withMeetingCode($value)
41
 */
42
class ActiveMeeting extends Rpc
43
{
44
}
45
46
/**
47
 * @method string getGroupId()
48
 * @method string getSN()
49
 */
50
class BatchDeleteDevices extends Rpc
51
{
52
53
    /**
54
     * @param string $value
55
     *
56
     * @return $this
57
     */
58
    public function withGroupId($value)
59
    {
60
        $this->data['GroupId'] = $value;
61
        $this->options['form_params']['GroupId'] = $value;
62
63
        return $this;
64
    }
65
66
    /**
67
     * @param string $value
68
     *
69
     * @return $this
70
     */
71
    public function withSN($value)
72
    {
73
        $this->data['SN'] = $value;
74
        $this->options['form_params']['SN'] = $value;
75
76
        return $this;
77
    }
78
}
79
80
/**
81
 * @method string getCreateTime()
82
 * @method $this withCreateTime($value)
83
 * @method string getMemo()
84
 * @method $this withMemo($value)
85
 * @method string getDescription()
86
 * @method $this withDescription($value)
87
 * @method string getMemberUUID()
88
 * @method $this withMemberUUID($value)
89
 * @method string getUserId()
90
 * @method $this withUserId($value)
91
 * @method string getEvaluation()
92
 * @method $this withEvaluation($value)
93
 * @method string getScore()
94
 * @method $this withScore($value)
95
 * @method string getMeetingUUID()
96
 * @method $this withMeetingUUID($value)
97
 * @method string getAppId()
98
 * @method $this withAppId($value)
99
 */
100
class CreateEvaluation extends Rpc
101
{
102
}
103
104
/**
105
 * @method string getMeetingName()
106
 * @method string getUserId()
107
 */
108
class CreateMeeting extends Rpc
109
{
110
111
    /**
112
     * @param string $value
113
     *
114
     * @return $this
115
     */
116
    public function withMeetingName($value)
117
    {
118
        $this->data['MeetingName'] = $value;
119
        $this->options['form_params']['MeetingName'] = $value;
120
121
        return $this;
122
    }
123
124
    /**
125
     * @param string $value
126
     *
127
     * @return $this
128
     */
129
    public function withUserId($value)
130
    {
131
        $this->data['UserId'] = $value;
132
        $this->options['form_params']['UserId'] = $value;
133
134
        return $this;
135
    }
136
}
137
138
/**
139
 * @method string getCount()
140
 * @method string getUserInfo()
141
 */
142
class CreateUser extends Rpc
143
{
144
145
    /**
146
     * @param string $value
147
     *
148
     * @return $this
149
     */
150
    public function withCount($value)
151
    {
152
        $this->data['Count'] = $value;
153
        $this->options['form_params']['Count'] = $value;
154
155
        return $this;
156
    }
157
158
    /**
159
     * @param string $value
160
     *
161
     * @return $this
162
     */
163
    public function withUserInfo($value)
164
    {
165
        $this->data['UserInfo'] = $value;
166
        $this->options['form_params']['UserInfo'] = $value;
167
168
        return $this;
169
    }
170
}
171
172
/**
173
 * @method string getMeetingUUID()
174
 */
175
class GetMeeting extends Rpc
176
{
177
178
    /**
179
     * @param string $value
180
     *
181
     * @return $this
182
     */
183
    public function withMeetingUUID($value)
184
    {
185
        $this->data['MeetingUUID'] = $value;
186
        $this->options['form_params']['MeetingUUID'] = $value;
187
188
        return $this;
189
    }
190
}
191
192
/**
193
 * @method string getMeetingUUID()
194
 */
195
class GetMembers extends Rpc
196
{
197
198
    /**
199
     * @param string $value
200
     *
201
     * @return $this
202
     */
203
    public function withMeetingUUID($value)
204
    {
205
        $this->data['MeetingUUID'] = $value;
206
        $this->options['form_params']['MeetingUUID'] = $value;
207
208
        return $this;
209
    }
210
}
211
212
/**
213
 * @method string getUserId()
214
 * @method string getMeetingCode()
215
 */
216
class JoinMeeting extends Rpc
217
{
218
219
    /**
220
     * @param string $value
221
     *
222
     * @return $this
223
     */
224
    public function withUserId($value)
225
    {
226
        $this->data['UserId'] = $value;
227
        $this->options['form_params']['UserId'] = $value;
228
229
        return $this;
230
    }
231
232
    /**
233
     * @param string $value
234
     *
235
     * @return $this
236
     */
237
    public function withMeetingCode($value)
238
    {
239
        $this->data['MeetingCode'] = $value;
240
        $this->options['form_params']['MeetingCode'] = $value;
241
242
        return $this;
243
    }
244
}
245