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 ( d6386a...07dc51 )
by
unknown
05:57
created

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