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 ( d9e144...e7198a )
by
unknown
05:47
created

TestFlowStrategy01::withNames()   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\Ft\V20180713;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method BatchAuditTest01 batchAuditTest01(array $options = [])
9
 * @method FTApiAliasApi fTApiAliasApi(array $options = [])
10
 * @method FtDynamicAddressDubbo ftDynamicAddressDubbo(array $options = [])
11
 * @method FtDynamicAddressHsf ftDynamicAddressHsf(array $options = [])
12
 * @method FtEagleEye ftEagleEye(array $options = [])
13
 * @method FtFlowSpecial ftFlowSpecial(array $options = [])
14
 * @method FtGatedLaunchPolicy4 ftGatedLaunchPolicy4(array $options = [])
15
 * @method FtIpFlowControl ftIpFlowControl(array $options = [])
16
 * @method FtParamList ftParamList(array $options = [])
17
 * @method TestFlowStrategy01 testFlowStrategy01(array $options = [])
18
 * @method TestHttpApi testHttpApi(array $options = [])
19
 */
20
class FtApiResolver extends ApiResolver
21
{
22
}
23
24
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
25
{
26
    /** @var string */
27
    public $product = 'Ft';
28
29
    /** @var string */
30
    public $version = '2018-07-13';
31
32
    /** @var string */
33
    public $method = 'POST';
34
}
35
36
/**
37
 * @method string getDemo01()
38
 * @method $this withDemo01($value)
39
 * @method string getTest010101()
40
 * @method string getName()
41
 * @method $this withName($value)
42
 * @method string getBatchAuditTest01()
43
 * @method $this withBatchAuditTest01($value)
44
 */
45
class BatchAuditTest01 extends Rpc
46
{
47
48
    /**
49
     * @param string $value
50
     *
51
     * @return $this
52
     */
53
    public function withTest010101($value)
54
    {
55
        $this->data['Test010101'] = $value;
56
        $this->options['form_params']['Test010101'] = $value;
57
58
        return $this;
59
    }
60
}
61
62
/**
63
 * @method string getName()
64
 * @method $this withName($value)
65
 */
66
class FTApiAliasApi extends Rpc
67
{
68
}
69
70
/**
71
 * @method string getIntValue()
72
 * @method $this withIntValue($value)
73
 * @method string getStringValue()
74
 * @method $this withStringValue($value)
75
 */
76
class FtDynamicAddressDubbo extends Rpc
77
{
78
}
79
80
class FtDynamicAddressHsf extends Rpc
81
{
82
}
83
84
/**
85
 * @method string getName()
86
 * @method $this withName($value)
87
 */
88
class FtEagleEye extends Rpc
89
{
90
}
91
92
/**
93
 * @method string getName()
94
 * @method $this withName($value)
95
 */
96
class FtFlowSpecial extends Rpc
97
{
98
}
99
100
/**
101
 * @method string getIsGatedLaunch()
102
 * @method $this withIsGatedLaunch($value)
103
 */
104
class FtGatedLaunchPolicy4 extends Rpc
105
{
106
}
107
108
/**
109
 * @method string getName()
110
 * @method $this withName($value)
111
 */
112
class FtIpFlowControl extends Rpc
113
{
114
}
115
116
/**
117
 * @method array getDisk()
118
 * @method string getName()
119
 * @method $this withName($value)
120
 */
121
class FtParamList extends Rpc
122
{
123
124
    /**
125
     * @param array $disk
126
     *
127
     * @return $this
128
     */
129
	public function withDisk(array $disk)
130
	{
131
	    $this->data['Disk'] = $disk;
132
		foreach ($disk as $depth1 => $depth1Value) {
133
			foreach ($depth1Value['Size'] as $i => $iValue) {
134
				$this->options['query']['Disk.' . ($depth1 + 1) . '.Size.' . ($i + 1)] = $iValue;
135
			}
136
			foreach ($depth1Value['Type'] as $i => $iValue) {
137
				$this->options['query']['Disk.' . ($depth1 + 1) . '.Type.' . ($i + 1)] = $iValue;
138
			}
139
		}
140
141
		return $this;
142
    }
143
}
144
145
/**
146
 * @method string getNames()
147
 */
148
class TestFlowStrategy01 extends Rpc
149
{
150
151
    /** @var string */
152
    public $method = 'PUT';
153
154
    /**
155
     * @param string $value
156
     *
157
     * @return $this
158
     */
159
    public function withNames($value)
160
    {
161
        $this->data['Names'] = $value;
162
        $this->options['form_params']['Names'] = $value;
163
164
        return $this;
165
    }
166
}
167
168
/**
169
 * @method string getStringValue()
170
 * @method $this withStringValue($value)
171
 * @method string getOtherParam()
172
 * @method $this withOtherParam($value)
173
 * @method string getBooleanParam()
174
 * @method $this withBooleanParam($value)
175
 * @method string getDefaultValue()
176
 * @method $this withDefaultValue($value)
177
 */
178
class TestHttpApi extends Rpc
179
{
180
}
181