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.

Rpc
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 13
c 0
b 0
f 0
1
<?php
2
3
namespace AlibabaCloud\Yundun\V20150227;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method WebAttackNum webAttackNum(array $options = [])
9
 * @method TodayqpsByRegion todayqpsByRegion(array $options = [])
10
 * @method TodayMalwareNum todayMalwareNum(array $options = [])
11
 * @method TodayCrackIntercept todayCrackIntercept(array $options = [])
12
 * @method TodayBackdoor todayBackdoor(array $options = [])
13
 * @method TodayAllpps todayAllpps(array $options = [])
14
 * @method TodayAllkbps todayAllkbps(array $options = [])
15
 * @method TodayAegisOnlineRate todayAegisOnlineRate(array $options = [])
16
 * @method CurrentDdosAttackNum currentDdosAttackNum(array $options = [])
17
 * @method AllMalwareNum allMalwareNum(array $options = [])
18
 */
19
class YundunApiResolver extends ApiResolver
20
{
21
}
22
23
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
24
{
25
    /** @var string */
26
    public $product = 'Yundun';
27
28
    /** @var string */
29
    public $version = '2015-02-27';
30
31
    /** @var string */
32
    public $method = 'POST';
33
34
    /** @var string */
35
    public $serviceCode = 'yundun';
36
}
37
38
class WebAttackNum extends Rpc
39
{
40
}
41
42
class TodayqpsByRegion extends Rpc
43
{
44
}
45
46
class TodayMalwareNum extends Rpc
47
{
48
}
49
50
class TodayCrackIntercept extends Rpc
51
{
52
}
53
54
class TodayBackdoor extends Rpc
55
{
56
}
57
58
class TodayAllpps extends Rpc
59
{
60
}
61
62
class TodayAllkbps extends Rpc
63
{
64
}
65
66
class TodayAegisOnlineRate extends Rpc
67
{
68
}
69
70
class CurrentDdosAttackNum extends Rpc
71
{
72
}
73
74
class AllMalwareNum extends Rpc
75
{
76
}
77