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

getStatus   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 62
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 62
rs 10
c 0
b 0
f 0
wmc 5
lcom 0
cbo 0
1
<?php
2
3
namespace SmsaSDK\Methods;
4
5
class getStatus
6
{
7
    /**
8
     * @var string
9
     */
10
    protected $awbNo = null;
11
12
    /**
13
     * @var string
14
     */
15
    protected $passkey = null;
16
17
    /**
18
     * @param string $awbNo
19
     * @param string $passkey
20
     */
21
    public function __construct($awbNo = null, $passkey = null)
22
    {
23
        $this->awbNo = $awbNo;
24
        $this->passkey = $passkey;
25
    }
26
27
    /**
28
     * @return string
29
     */
30
    public function getAwbNo()
31
    {
32
        return $this->awbNo;
33
    }
34
35
    /**
36
     * @param string $awbNo
37
     *
38
     * @return \SmsaSDK\Methods\getStatus
39
     */
40
    public function setAwbNo($awbNo)
41
    {
42
        $this->awbNo = $awbNo;
43
44
        return $this;
45
    }
46
47
    /**
48
     * @return string
49
     */
50
    public function getPasskey()
51
    {
52
        return $this->passkey;
53
    }
54
55
    /**
56
     * @param string $passkey
57
     *
58
     * @return \SmsaSDK\Methods\getStatus
59
     */
60
    public function setPasskey($passkey)
61
    {
62
        $this->passkey = $passkey;
63
64
        return $this;
65
    }
66
}
67