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 ( a3d17e...bbe43d )
by
unknown
10:42 queued 06:20
created

RefineMask::withMaskImageURL()   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
c 0
b 0
f 0
dl 0
loc 6
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\Imageseg\V20191230;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ParseFace parseFace(array $options = [])
9
 * @method RefineMask refineMask(array $options = [])
10
 * @method SegmentBody segmentBody(array $options = [])
11
 * @method SegmentCommodity segmentCommodity(array $options = [])
12
 * @method SegmentCommonImage segmentCommonImage(array $options = [])
13
 * @method SegmentFace segmentFace(array $options = [])
14
 * @method SegmentFurniture segmentFurniture(array $options = [])
15
 * @method SegmentHair segmentHair(array $options = [])
16
 * @method SegmentHead segmentHead(array $options = [])
17
 * @method SegmentVehicle segmentVehicle(array $options = [])
18
 */
19
class ImagesegApiResolver extends ApiResolver
20
{
21
}
22
23
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
24
{
25
    /** @var string */
26
    public $product = 'imageseg';
27
28
    /** @var string */
29
    public $version = '2019-12-30';
30
31
    /** @var string */
32
    public $method = 'POST';
33
34
    /** @var string */
35
    public $serviceCode = 'imageseg';
36
}
37
38
/**
39
 * @method string getImageURL()
40
 * @method $this withImageURL($value)
41
 */
42
class ParseFace extends Rpc
43
{
44
}
45
46
/**
47
 * @method string getMaskImageURL()
48
 * @method string getImageURL()
49
 */
50
class RefineMask extends Rpc
51
{
52
53
    /**
54
     * @param string $value
55
     *
56
     * @return $this
57
     */
58
    public function withMaskImageURL($value)
59
    {
60
        $this->data['MaskImageURL'] = $value;
61
        $this->options['form_params']['MaskImageURL'] = $value;
62
63
        return $this;
64
    }
65
66
    /**
67
     * @param string $value
68
     *
69
     * @return $this
70
     */
71
    public function withImageURL($value)
72
    {
73
        $this->data['ImageURL'] = $value;
74
        $this->options['form_params']['ImageURL'] = $value;
75
76
        return $this;
77
    }
78
}
79
80
/**
81
 * @method string getImageURL()
82
 * @method $this withImageURL($value)
83
 */
84
class SegmentBody extends Rpc
85
{
86
}
87
88
/**
89
 * @method string getImageURL()
90
 * @method $this withImageURL($value)
91
 */
92
class SegmentCommodity extends Rpc
93
{
94
}
95
96
/**
97
 * @method string getImageURL()
98
 * @method $this withImageURL($value)
99
 */
100
class SegmentCommonImage extends Rpc
101
{
102
}
103
104
/**
105
 * @method string getImageURL()
106
 * @method $this withImageURL($value)
107
 */
108
class SegmentFace extends Rpc
109
{
110
}
111
112
/**
113
 * @method string getImageURL()
114
 */
115
class SegmentFurniture extends Rpc
116
{
117
118
    /**
119
     * @param string $value
120
     *
121
     * @return $this
122
     */
123
    public function withImageURL($value)
124
    {
125
        $this->data['ImageURL'] = $value;
126
        $this->options['form_params']['ImageURL'] = $value;
127
128
        return $this;
129
    }
130
}
131
132
/**
133
 * @method string getImageURL()
134
 * @method $this withImageURL($value)
135
 */
136
class SegmentHair extends Rpc
137
{
138
}
139
140
/**
141
 * @method string getImageURL()
142
 * @method $this withImageURL($value)
143
 */
144
class SegmentHead extends Rpc
145
{
146
}
147
148
/**
149
 * @method string getImageURL()
150
 */
151
class SegmentVehicle extends Rpc
152
{
153
154
    /**
155
     * @param string $value
156
     *
157
     * @return $this
158
     */
159
    public function withImageURL($value)
160
    {
161
        $this->data['ImageURL'] = $value;
162
        $this->options['form_params']['ImageURL'] = $value;
163
164
        return $this;
165
    }
166
}
167