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 ( 9d3324...2d3ea6 )
by
unknown
09:57
created

GetLjxAccountInfo::withLjxAccountInfoId()   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
dl 0
loc 6
c 1
b 0
f 0
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\Wfts\V20220212;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method GetLjxAccountInfo getLjxAccountInfo(array $options = [])
9
 */
10
class WftsApiResolver extends ApiResolver
11
{
12
}
13
14
class Roa extends \AlibabaCloud\Client\Resolver\Roa
15
{
16
    /** @var string */
17
    public $product = 'Wfts';
18
19
    /** @var string */
20
    public $version = '2022-02-12';
21
}
22
23
/**
24
 * @method string getLjxAccountInfoId()
25
 */
26
class GetLjxAccountInfo extends Roa
27
{
28
    /** @var string */
29
    public $pathPattern = '/get/ljx/acc';
30
31
    /**
32
     * @param string $value
33
     *
34
     * @return $this
35
     */
36
    public function withLjxAccountInfoId($value)
37
    {
38
        $this->data['LjxAccountInfoId'] = $value;
39
        $this->options['query']['LjxAccountInfoId'] = $value;
40
41
        return $this;
42
    }
43
}
44