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 ( 640a71...4cef9c )
by
unknown
23:16 queued 17:28
created

RecognizeVehicleDashboard::withImageURL()   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\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 DetectVehicle detectVehicle(array $options = [])
11
 * @method RecognizeVehicleDamage recognizeVehicleDamage(array $options = [])
12
 * @method RecognizeVehicleDashboard recognizeVehicleDashboard(array $options = [])
13
 * @method RecognizeVehicleParts recognizeVehicleParts(array $options = [])
14
 */
15
class ObjectdetApiResolver extends ApiResolver
16
{
17
}
18
19
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
20
{
21
    /** @var string */
22
    public $product = 'objectdet';
23
24
    /** @var string */
25
    public $version = '2019-12-30';
26
27
    /** @var string */
28
    public $method = 'POST';
29
30
    /** @var string */
31
    public $serviceCode = 'objectdet';
32
}
33
34
/**
35
 * @method string getImageURL()
36
 */
37
class ClassifyVehicleInsurance extends Rpc
38
{
39
40
    /**
41
     * @param string $value
42
     *
43
     * @return $this
44
     */
45
    public function withImageURL($value)
46
    {
47
        $this->data['ImageURL'] = $value;
48
        $this->options['form_params']['ImageURL'] = $value;
49
50
        return $this;
51
    }
52
}
53
54
/**
55
 * @method string getImageURL()
56
 * @method $this withImageURL($value)
57
 */
58
class DetectMainBody extends Rpc
59
{
60
}
61
62
/**
63
 * @method string getImageType()
64
 * @method string getImageURL()
65
 */
66
class DetectVehicle extends Rpc
67
{
68
69
    /**
70
     * @param string $value
71
     *
72
     * @return $this
73
     */
74
    public function withImageType($value)
75
    {
76
        $this->data['ImageType'] = $value;
77
        $this->options['form_params']['ImageType'] = $value;
78
79
        return $this;
80
    }
81
82
    /**
83
     * @param string $value
84
     *
85
     * @return $this
86
     */
87
    public function withImageURL($value)
88
    {
89
        $this->data['ImageURL'] = $value;
90
        $this->options['form_params']['ImageURL'] = $value;
91
92
        return $this;
93
    }
94
}
95
96
/**
97
 * @method string getImageURL()
98
 */
99
class RecognizeVehicleDamage extends Rpc
100
{
101
102
    /**
103
     * @param string $value
104
     *
105
     * @return $this
106
     */
107
    public function withImageURL($value)
108
    {
109
        $this->data['ImageURL'] = $value;
110
        $this->options['form_params']['ImageURL'] = $value;
111
112
        return $this;
113
    }
114
}
115
116
/**
117
 * @method string getImageURL()
118
 */
119
class RecognizeVehicleDashboard extends Rpc
120
{
121
122
    /**
123
     * @param string $value
124
     *
125
     * @return $this
126
     */
127
    public function withImageURL($value)
128
    {
129
        $this->data['ImageURL'] = $value;
130
        $this->options['form_params']['ImageURL'] = $value;
131
132
        return $this;
133
    }
134
}
135
136
/**
137
 * @method string getImageURL()
138
 */
139
class RecognizeVehicleParts extends Rpc
140
{
141
142
    /**
143
     * @param string $value
144
     *
145
     * @return $this
146
     */
147
    public function withImageURL($value)
148
    {
149
        $this->data['ImageURL'] = $value;
150
        $this->options['form_params']['ImageURL'] = $value;
151
152
        return $this;
153
    }
154
}
155