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.
Passed
Push — master ( b9cee7...95035f )
by
unknown
08:45 queued 02:27
created

OrderRefundCallback   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 14
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A withData() 0 6 1
1
<?php
2
3
namespace AlibabaCloud\BatchCompute\V20161111;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method OrderRefundCallback orderRefundCallback(array $options = [])
9
 */
10
class BatchComputeApiResolver extends ApiResolver
11
{
12
}
13
14
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
15
{
16
    /** @var string */
17
    public $product = 'BatchCompute';
18
19
    /** @var string */
20
    public $version = '2016-11-11';
21
22
    /** @var string */
23
    public $method = 'POST';
24
}
25
26
/**
27
 * @method string getData()
28
 */
29
class OrderRefundCallback extends Rpc
30
{
31
32
    /**
33
     * @param string $value
34
     *
35
     * @return $this
36
     */
37
    public function withData($value)
38
    {
39
        $this->data['Data'] = $value;
40
        $this->options['query']['data'] = $value;
41
42
        return $this;
43
    }
44
}
45