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
Branch master (77762a)
by Mohannad
13:57 queued 03:59
created

cancelShipment   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 89
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 89
rs 10
c 0
b 0
f 0
wmc 7
lcom 0
cbo 0
1
<?php
2
3
namespace SmsaSDK\Methods;
4
5
class cancelShipment
6
{
7
    /**
8
     * @var string
9
     */
10
    protected $awbNo = null;
11
12
    /**
13
     * @var string
14
     */
15
    protected $passkey = null;
16
17
    /**
18
     * @var string
19
     */
20
    protected $reas = null;
21
22
    /**
23
     * @param string $awbNo
24
     * @param string $passkey
25
     * @param string $reas
26
     */
27
    public function __construct($awbNo = null, $passkey = null, $reas = null)
28
    {
29
        $this->awbNo = $awbNo;
30
        $this->passkey = $passkey;
31
        $this->reas = $reas;
32
    }
33
34
    /**
35
     * @return string
36
     */
37
    public function getAwbNo()
38
    {
39
        return $this->awbNo;
40
    }
41
42
    /**
43
     * @param string $awbNo
44
     *
45
     * @return \SmsaSDK\Methods\cancelShipment
46
     */
47
    public function setAwbNo($awbNo)
48
    {
49
        $this->awbNo = $awbNo;
50
51
        return $this;
52
    }
53
54
    /**
55
     * @return string
56
     */
57
    public function getPasskey()
58
    {
59
        return $this->passkey;
60
    }
61
62
    /**
63
     * @param string $passkey
64
     *
65
     * @return \SmsaSDK\Methods\cancelShipment
66
     */
67
    public function setPasskey($passkey)
68
    {
69
        $this->passkey = $passkey;
70
71
        return $this;
72
    }
73
74
    /**
75
     * @return string
76
     */
77
    public function getReas()
78
    {
79
        return $this->reas;
80
    }
81
82
    /**
83
     * @param string $reas
84
     *
85
     * @return \SmsaSDK\Methods\cancelShipment
86
     */
87
    public function setReas($reas)
88
    {
89
        $this->reas = $reas;
90
91
        return $this;
92
    }
93
}
94