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 ( 472c3f...3d7e37 )
by
unknown
04:13
created

RecognizeFurnitureAttribute::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\Goodstech\V20191230;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ClassifyCommodity classifyCommodity(array $options = [])
9
 * @method RecognizeFurnitureAttribute recognizeFurnitureAttribute(array $options = [])
10
 * @method RecognizeFurnitureSpu recognizeFurnitureSpu(array $options = [])
11
 */
12
class GoodstechApiResolver extends ApiResolver
13
{
14
}
15
16
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
17
{
18
    /** @var string */
19
    public $product = 'goodstech';
20
21
    /** @var string */
22
    public $version = '2019-12-30';
23
24
    /** @var string */
25
    public $method = 'POST';
26
27
    /** @var string */
28
    public $serviceCode = 'goodstech';
29
}
30
31
/**
32
 * @method string getImageURL()
33
 * @method $this withImageURL($value)
34
 */
35
class ClassifyCommodity extends Rpc
36
{
37
}
38
39
/**
40
 * @method string getImageURL()
41
 */
42
class RecognizeFurnitureAttribute extends Rpc
43
{
44
45
    /**
46
     * @param string $value
47
     *
48
     * @return $this
49
     */
50
    public function withImageURL($value)
51
    {
52
        $this->data['ImageURL'] = $value;
53
        $this->options['form_params']['ImageURL'] = $value;
54
55
        return $this;
56
    }
57
}
58
59
/**
60
 * @method string getXLength()
61
 * @method string getZLength()
62
 * @method string getImageURL()
63
 * @method string getYLength()
64
 */
65
class RecognizeFurnitureSpu extends Rpc
66
{
67
68
    /**
69
     * @param string $value
70
     *
71
     * @return $this
72
     */
73
    public function withXLength($value)
74
    {
75
        $this->data['XLength'] = $value;
76
        $this->options['form_params']['XLength'] = $value;
77
78
        return $this;
79
    }
80
81
    /**
82
     * @param string $value
83
     *
84
     * @return $this
85
     */
86
    public function withZLength($value)
87
    {
88
        $this->data['ZLength'] = $value;
89
        $this->options['form_params']['ZLength'] = $value;
90
91
        return $this;
92
    }
93
94
    /**
95
     * @param string $value
96
     *
97
     * @return $this
98
     */
99
    public function withImageURL($value)
100
    {
101
        $this->data['ImageURL'] = $value;
102
        $this->options['form_params']['ImageURL'] = $value;
103
104
        return $this;
105
    }
106
107
    /**
108
     * @param string $value
109
     *
110
     * @return $this
111
     */
112
    public function withYLength($value)
113
    {
114
        $this->data['YLength'] = $value;
115
        $this->options['form_params']['YLength'] = $value;
116
117
        return $this;
118
    }
119
}
120