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 ( 905b68...db52c1 )
by
unknown
05:51
created

RevokeFeedback::withValue()   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\Safconsole\V20210112;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method RevokeFeedback revokeFeedback(array $options = [])
9
 * @method SendFeedback sendFeedback(array $options = [])
10
 */
11
class SafconsoleApiResolver extends ApiResolver
12
{
13
}
14
15
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
16
{
17
    /** @var string */
18
    public $product = 'safconsole';
19
20
    /** @var string */
21
    public $version = '2021-01-12';
22
23
    /** @var string */
24
    public $method = 'POST';
25
26
    /** @var string */
27
    public $serviceCode = 'safconsole';
28
}
29
30
/**
31
 * @method string getSampleType()
32
 * @method string getValue()
33
 */
34
class RevokeFeedback extends Rpc
35
{
36
37
    /**
38
     * @param string $value
39
     *
40
     * @return $this
41
     */
42
    public function withSampleType($value)
43
    {
44
        $this->data['SampleType'] = $value;
45
        $this->options['form_params']['SampleType'] = $value;
46
47
        return $this;
48
    }
49
50
    /**
51
     * @param string $value
52
     *
53
     * @return $this
54
     */
55
    public function withValue($value)
56
    {
57
        $this->data['Value'] = $value;
58
        $this->options['form_params']['Value'] = $value;
59
60
        return $this;
61
    }
62
}
63
64
/**
65
 * @method string getRiskLabel()
66
 * @method $this withRiskLabel($value)
67
 * @method string getSampleType()
68
 * @method $this withSampleType($value)
69
 * @method string getValue()
70
 * @method $this withValue($value)
71
 */
72
class SendFeedback extends Rpc
73
{
74
}
75