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 ( c9bc1c...f7c767 )
by
unknown
07:18
created

BatchQuerySessionByClientIds   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 5
c 1
b 0
f 0
dl 0
loc 16
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A withClientIdList() 0 8 2
1
<?php
2
3
namespace AlibabaCloud\OnsMqtt\V20200420;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ApplyToken applyToken(array $options = [])
9
 * @method BatchQuerySessionByClientIds batchQuerySessionByClientIds(array $options = [])
10
 * @method CreateGroupId createGroupId(array $options = [])
11
 * @method DeleteGroupId deleteGroupId(array $options = [])
12
 * @method GetDeviceCredential getDeviceCredential(array $options = [])
13
 * @method ListGroupId listGroupId(array $options = [])
14
 * @method QuerySessionByClientId querySessionByClientId(array $options = [])
15
 * @method QueryToken queryToken(array $options = [])
16
 * @method RefreshDeviceCredential refreshDeviceCredential(array $options = [])
17
 * @method RegisterDeviceCredential registerDeviceCredential(array $options = [])
18
 * @method RevokeToken revokeToken(array $options = [])
19
 * @method SendMessage sendMessage(array $options = [])
20
 * @method UnRegisterDeviceCredential unRegisterDeviceCredential(array $options = [])
21
 */
22
class OnsMqttApiResolver extends ApiResolver
23
{
24
}
25
26
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
27
{
28
    /** @var string */
29
    public $product = 'OnsMqtt';
30
31
    /** @var string */
32
    public $version = '2020-04-20';
33
34
    /** @var string */
35
    public $method = 'POST';
36
37
    /** @var string */
38
    public $serviceCode = 'onsmqtt';
39
}
40
41
/**
42
 * @method string getExpireTime()
43
 * @method $this withExpireTime($value)
44
 * @method string getResources()
45
 * @method $this withResources($value)
46
 * @method string getInstanceId()
47
 * @method $this withInstanceId($value)
48
 * @method string getActions()
49
 * @method $this withActions($value)
50
 */
51
class ApplyToken extends Rpc
52
{
53
}
54
55
/**
56
 * @method array getClientIdList()
57
 * @method string getInstanceId()
58
 * @method $this withInstanceId($value)
59
 */
60
class BatchQuerySessionByClientIds extends Rpc
61
{
62
63
    /**
64
     * @param array $clientIdList
65
     *
66
     * @return $this
67
     */
68
	public function withClientIdList(array $clientIdList)
69
	{
70
	    $this->data['ClientIdList'] = $clientIdList;
71
		foreach ($clientIdList as $i => $iValue) {
72
			$this->options['query']['ClientIdList.' . ($i + 1)] = $iValue;
73
		}
74
75
		return $this;
76
    }
77
}
78
79
/**
80
 * @method string getGroupId()
81
 * @method $this withGroupId($value)
82
 * @method string getInstanceId()
83
 * @method $this withInstanceId($value)
84
 */
85
class CreateGroupId extends Rpc
86
{
87
}
88
89
/**
90
 * @method string getGroupId()
91
 * @method $this withGroupId($value)
92
 * @method string getInstanceId()
93
 * @method $this withInstanceId($value)
94
 */
95
class DeleteGroupId extends Rpc
96
{
97
}
98
99
/**
100
 * @method string getClientId()
101
 * @method $this withClientId($value)
102
 * @method string getInstanceId()
103
 * @method $this withInstanceId($value)
104
 */
105
class GetDeviceCredential extends Rpc
106
{
107
}
108
109
/**
110
 * @method string getInstanceId()
111
 * @method $this withInstanceId($value)
112
 */
113
class ListGroupId extends Rpc
114
{
115
}
116
117
/**
118
 * @method string getClientId()
119
 * @method $this withClientId($value)
120
 * @method string getInstanceId()
121
 * @method $this withInstanceId($value)
122
 */
123
class QuerySessionByClientId extends Rpc
124
{
125
}
126
127
/**
128
 * @method string getToken()
129
 * @method $this withToken($value)
130
 * @method string getInstanceId()
131
 * @method $this withInstanceId($value)
132
 */
133
class QueryToken extends Rpc
134
{
135
}
136
137
/**
138
 * @method string getClientId()
139
 * @method $this withClientId($value)
140
 * @method string getInstanceId()
141
 * @method $this withInstanceId($value)
142
 */
143
class RefreshDeviceCredential extends Rpc
144
{
145
}
146
147
/**
148
 * @method string getClientId()
149
 * @method $this withClientId($value)
150
 * @method string getInstanceId()
151
 * @method $this withInstanceId($value)
152
 */
153
class RegisterDeviceCredential extends Rpc
154
{
155
}
156
157
/**
158
 * @method string getToken()
159
 * @method $this withToken($value)
160
 * @method string getInstanceId()
161
 * @method $this withInstanceId($value)
162
 */
163
class RevokeToken extends Rpc
164
{
165
}
166
167
/**
168
 * @method string getMqttTopic()
169
 * @method $this withMqttTopic($value)
170
 * @method string getInstanceId()
171
 * @method $this withInstanceId($value)
172
 * @method string getPayload()
173
 * @method $this withPayload($value)
174
 */
175
class SendMessage extends Rpc
176
{
177
}
178
179
/**
180
 * @method string getClientId()
181
 * @method $this withClientId($value)
182
 * @method string getInstanceId()
183
 * @method $this withInstanceId($value)
184
 */
185
class UnRegisterDeviceCredential extends Rpc
186
{
187
}
188