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 ( 695f9e...f7e24a )
by
unknown
07:40
created

DeleteLabReserved::withReservedId()   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\EduCloud\V20220202;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method AddLabReserved addLabReserved(array $options = [])
9
 * @method DeleteLabReserved deleteLabReserved(array $options = [])
10
 * @method DescribeCourse describeCourse(array $options = [])
11
 * @method DescribeCourseLesson describeCourseLesson(array $options = [])
12
 * @method DescribeLab describeLab(array $options = [])
13
 * @method DescribeLabReserved describeLabReserved(array $options = [])
14
 * @method DescribeLabToken describeLabToken(array $options = [])
15
 * @method GetLabToken getLabToken(array $options = [])
16
 * @method ListCourses listCourses(array $options = [])
17
 * @method ListLabReserveds listLabReserveds(array $options = [])
18
 * @method ListLabs listLabs(array $options = [])
19
 * @method ListLabTokens listLabTokens(array $options = [])
20
 */
21
class EduCloudApiResolver extends ApiResolver
22
{
23
}
24
25
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
26
{
27
    /** @var string */
28
    public $product = 'EduCloud';
29
30
    /** @var string */
31
    public $version = '2022-02-02';
32
}
33
34
/**
35
 * @method string getNumber()
36
 * @method string getLabId()
37
 * @method string getEndTime()
38
 * @method string getStartTime()
39
 */
40
class AddLabReserved extends Rpc
41
{
42
43
    /** @var string */
44
    public $method = 'POST';
45
46
    /**
47
     * @param string $value
48
     *
49
     * @return $this
50
     */
51
    public function withNumber($value)
52
    {
53
        $this->data['Number'] = $value;
54
        $this->options['form_params']['Number'] = $value;
55
56
        return $this;
57
    }
58
59
    /**
60
     * @param string $value
61
     *
62
     * @return $this
63
     */
64
    public function withLabId($value)
65
    {
66
        $this->data['LabId'] = $value;
67
        $this->options['form_params']['LabId'] = $value;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @param string $value
74
     *
75
     * @return $this
76
     */
77
    public function withEndTime($value)
78
    {
79
        $this->data['EndTime'] = $value;
80
        $this->options['form_params']['EndTime'] = $value;
81
82
        return $this;
83
    }
84
85
    /**
86
     * @param string $value
87
     *
88
     * @return $this
89
     */
90
    public function withStartTime($value)
91
    {
92
        $this->data['StartTime'] = $value;
93
        $this->options['form_params']['StartTime'] = $value;
94
95
        return $this;
96
    }
97
}
98
99
/**
100
 * @method string getReservedId()
101
 */
102
class DeleteLabReserved extends Rpc
103
{
104
105
    /** @var string */
106
    public $method = 'POST';
107
108
    /**
109
     * @param string $value
110
     *
111
     * @return $this
112
     */
113
    public function withReservedId($value)
114
    {
115
        $this->data['ReservedId'] = $value;
116
        $this->options['form_params']['ReservedId'] = $value;
117
118
        return $this;
119
    }
120
}
121
122
/**
123
 * @method string getCourseId()
124
 * @method $this withCourseId($value)
125
 */
126
class DescribeCourse extends Rpc
127
{
128
}
129
130
/**
131
 * @method string getLessonId()
132
 * @method $this withLessonId($value)
133
 */
134
class DescribeCourseLesson extends Rpc
135
{
136
}
137
138
/**
139
 * @method string getLabId()
140
 * @method $this withLabId($value)
141
 */
142
class DescribeLab extends Rpc
143
{
144
}
145
146
/**
147
 * @method string getReservedId()
148
 * @method $this withReservedId($value)
149
 */
150
class DescribeLabReserved extends Rpc
151
{
152
}
153
154
/**
155
 * @method string getRamUid()
156
 * @method $this withRamUid($value)
157
 * @method string getOrderId()
158
 * @method $this withOrderId($value)
159
 */
160
class DescribeLabToken extends Rpc
161
{
162
}
163
164
/**
165
 * @method string getRamUid()
166
 * @method $this withRamUid($value)
167
 * @method string getLabId()
168
 * @method $this withLabId($value)
169
 */
170
class GetLabToken extends Rpc
171
{
172
}
173
174
/**
175
 * @method string getPageSize()
176
 * @method $this withPageSize($value)
177
 * @method string getPage()
178
 * @method $this withPage($value)
179
 * @method string getId()
180
 * @method $this withId($value)
181
 */
182
class ListCourses extends Rpc
183
{
184
}
185
186
/**
187
 * @method string getLabName()
188
 * @method $this withLabName($value)
189
 * @method string getPageSize()
190
 * @method $this withPageSize($value)
191
 * @method string getEndTime()
192
 * @method $this withEndTime($value)
193
 * @method string getPage()
194
 * @method $this withPage($value)
195
 * @method string getStartTime()
196
 * @method $this withStartTime($value)
197
 */
198
class ListLabReserveds extends Rpc
199
{
200
}
201
202
/**
203
 * @method string getPageSize()
204
 * @method $this withPageSize($value)
205
 * @method string getPage()
206
 * @method $this withPage($value)
207
 * @method string getId()
208
 * @method $this withId($value)
209
 */
210
class ListLabs extends Rpc
211
{
212
}
213
214
/**
215
 * @method string getRamUid()
216
 * @method $this withRamUid($value)
217
 * @method string getLabId()
218
 * @method $this withLabId($value)
219
 * @method string getFinishStatus()
220
 * @method $this withFinishStatus($value)
221
 * @method string getPageSize()
222
 * @method $this withPageSize($value)
223
 * @method string getPage()
224
 * @method $this withPage($value)
225
 */
226
class ListLabTokens extends Rpc
227
{
228
}
229