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 ( e0d152...402192 )
by Yong
02:28 queued 32s
created

QueryLogistics   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 47
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 14
dl 0
loc 47
rs 10
c 0
b 0
f 0
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A withBizId() 0 6 1
A withBizUid() 0 6 1
A withLmOrderId() 0 6 1
1
<?php
2
3
namespace AlibabaCloud\Linkedmall\V20180116;
4
5
use AlibabaCloud\Rpc;
6
7
/**
8
 * Api QueryLogistics
9
 *
10
 * @method string getLmOrderId()
11
 * @method string getBizUid()
12
 * @method string getBizId()
13
 */
14
class QueryLogistics extends Rpc
15
{
16
    public $product = 'linkedmall';
17
18
    public $version = '2018-01-16';
19
20
    public $method = 'POST';
21
22
    public $serviceCode = 'linkedmall';
23
24
    /**
25
     * @param string $lmOrderId
26
     *
27
     * @return $this
28
     */
29
    public function withLmOrderId($lmOrderId)
30
    {
31
        $this->data['LmOrderId'] = $lmOrderId;
32
        $this->options['query']['LmOrderId'] = $lmOrderId;
33
34
        return $this;
35
    }
36
37
    /**
38
     * @param string $bizUid
39
     *
40
     * @return $this
41
     */
42
    public function withBizUid($bizUid)
43
    {
44
        $this->data['BizUid'] = $bizUid;
45
        $this->options['query']['BizUid'] = $bizUid;
46
47
        return $this;
48
    }
49
50
    /**
51
     * @param string $bizId
52
     *
53
     * @return $this
54
     */
55
    public function withBizId($bizId)
56
    {
57
        $this->data['BizId'] = $bizId;
58
        $this->options['query']['BizId'] = $bizId;
59
60
        return $this;
61
    }
62
}
63