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 ( 2d17d2...156343 )
by
unknown
10:18
created

CreateDemoAccessToken::withDemoId()   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\DemoCenter\V20200121;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method CreateDemoAccessToken createDemoAccessToken(array $options = [])
9
 * @method DescribeDemoAccessToken describeDemoAccessToken(array $options = [])
10
 * @method ExpireDemoAccessToken expireDemoAccessToken(array $options = [])
11
 */
12
class DemoCenterApiResolver extends ApiResolver
13
{
14
}
15
16
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
17
{
18
    /** @var string */
19
    public $product = 'DemoCenter';
20
21
    /** @var string */
22
    public $version = '2020-01-21';
23
24
    /** @var string */
25
    public $method = 'POST';
26
27
    /** @var string */
28
    protected $scheme = 'https';
29
30
    /** @var string */
31
    public $serviceCode = 'DemoCenter';
32
}
33
34
/**
35
 * @method string getDemoId()
36
 */
37
class CreateDemoAccessToken extends Rpc
38
{
39
40
    /**
41
     * @param string $value
42
     *
43
     * @return $this
44
     */
45
    public function withDemoId($value)
46
    {
47
        $this->data['DemoId'] = $value;
48
        $this->options['form_params']['DemoId'] = $value;
49
50
        return $this;
51
    }
52
}
53
54
/**
55
 * @method string getDemoAccessToken()
56
 */
57
class DescribeDemoAccessToken extends Rpc
58
{
59
60
    /**
61
     * @param string $value
62
     *
63
     * @return $this
64
     */
65
    public function withDemoAccessToken($value)
66
    {
67
        $this->data['DemoAccessToken'] = $value;
68
        $this->options['form_params']['DemoAccessToken'] = $value;
69
70
        return $this;
71
    }
72
}
73
74
/**
75
 * @method string getDemoAccessToken()
76
 */
77
class ExpireDemoAccessToken extends Rpc
78
{
79
80
    /**
81
     * @param string $value
82
     *
83
     * @return $this
84
     */
85
    public function withDemoAccessToken($value)
86
    {
87
        $this->data['DemoAccessToken'] = $value;
88
        $this->options['form_params']['DemoAccessToken'] = $value;
89
90
        return $this;
91
    }
92
}
93