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 ( e2e733...73e9d4 )
by
unknown
26:50 queued 22:38
created

DetectWhiteBaseImage::withImageURL()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\Objectdet\V20191230;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ClassifyVehicleInsurance classifyVehicleInsurance(array $options = [])
9
 * @method DetectMainBody detectMainBody(array $options = [])
10
 * @method DetectObject detectObject(array $options = [])
11
 * @method DetectTransparentImage detectTransparentImage(array $options = [])
12
 * @method DetectVehicle detectVehicle(array $options = [])
13
 * @method DetectWhiteBaseImage detectWhiteBaseImage(array $options = [])
14
 * @method RecognizeVehicleDamage recognizeVehicleDamage(array $options = [])
15
 * @method RecognizeVehicleDashboard recognizeVehicleDashboard(array $options = [])
16
 * @method RecognizeVehicleParts recognizeVehicleParts(array $options = [])
17
 */
18
class ObjectdetApiResolver extends ApiResolver
19
{
20
}
21
22
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
23
{
24
    /** @var string */
25
    public $product = 'objectdet';
26
27
    /** @var string */
28
    public $version = '2019-12-30';
29
30
    /** @var string */
31
    public $method = 'POST';
32
33
    /** @var string */
34
    public $serviceCode = 'objectdet';
35
}
36
37
/**
38
 * @method string getImageURL()
39
 */
40
class ClassifyVehicleInsurance extends Rpc
41
{
42
43
    /**
44
     * @param string $value
45
     *
46
     * @return $this
47
     */
48
    public function withImageURL($value)
49
    {
50
        $this->data['ImageURL'] = $value;
51
        $this->options['form_params']['ImageURL'] = $value;
52
53
        return $this;
54
    }
55
}
56
57
/**
58
 * @method string getImageURL()
59
 * @method $this withImageURL($value)
60
 */
61
class DetectMainBody extends Rpc
62
{
63
}
64
65
/**
66
 * @method string getImageURL()
67
 */
68
class DetectObject extends Rpc
69
{
70
71
    /**
72
     * @param string $value
73
     *
74
     * @return $this
75
     */
76
    public function withImageURL($value)
77
    {
78
        $this->data['ImageURL'] = $value;
79
        $this->options['form_params']['ImageURL'] = $value;
80
81
        return $this;
82
    }
83
}
84
85
/**
86
 * @method string getImageURL()
87
 */
88
class DetectTransparentImage extends Rpc
89
{
90
91
    /**
92
     * @param string $value
93
     *
94
     * @return $this
95
     */
96
    public function withImageURL($value)
97
    {
98
        $this->data['ImageURL'] = $value;
99
        $this->options['form_params']['ImageURL'] = $value;
100
101
        return $this;
102
    }
103
}
104
105
/**
106
 * @method string getImageType()
107
 * @method string getImageURL()
108
 */
109
class DetectVehicle extends Rpc
110
{
111
112
    /**
113
     * @param string $value
114
     *
115
     * @return $this
116
     */
117
    public function withImageType($value)
118
    {
119
        $this->data['ImageType'] = $value;
120
        $this->options['form_params']['ImageType'] = $value;
121
122
        return $this;
123
    }
124
125
    /**
126
     * @param string $value
127
     *
128
     * @return $this
129
     */
130
    public function withImageURL($value)
131
    {
132
        $this->data['ImageURL'] = $value;
133
        $this->options['form_params']['ImageURL'] = $value;
134
135
        return $this;
136
    }
137
}
138
139
/**
140
 * @method string getImageURL()
141
 */
142
class DetectWhiteBaseImage extends Rpc
143
{
144
145
    /**
146
     * @param string $value
147
     *
148
     * @return $this
149
     */
150
    public function withImageURL($value)
151
    {
152
        $this->data['ImageURL'] = $value;
153
        $this->options['form_params']['ImageURL'] = $value;
154
155
        return $this;
156
    }
157
}
158
159
/**
160
 * @method string getImageURL()
161
 */
162
class RecognizeVehicleDamage extends Rpc
163
{
164
165
    /**
166
     * @param string $value
167
     *
168
     * @return $this
169
     */
170
    public function withImageURL($value)
171
    {
172
        $this->data['ImageURL'] = $value;
173
        $this->options['form_params']['ImageURL'] = $value;
174
175
        return $this;
176
    }
177
}
178
179
/**
180
 * @method string getImageURL()
181
 */
182
class RecognizeVehicleDashboard extends Rpc
183
{
184
185
    /**
186
     * @param string $value
187
     *
188
     * @return $this
189
     */
190
    public function withImageURL($value)
191
    {
192
        $this->data['ImageURL'] = $value;
193
        $this->options['form_params']['ImageURL'] = $value;
194
195
        return $this;
196
    }
197
}
198
199
/**
200
 * @method string getImageURL()
201
 */
202
class RecognizeVehicleParts extends Rpc
203
{
204
205
    /**
206
     * @param string $value
207
     *
208
     * @return $this
209
     */
210
    public function withImageURL($value)
211
    {
212
        $this->data['ImageURL'] = $value;
213
        $this->options['form_params']['ImageURL'] = $value;
214
215
        return $this;
216
    }
217
}
218