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

getPDFBr   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 getPDFBr
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 $forwrdr = null;
21
22
    /**
23
     * @param string $awbNo
24
     * @param string $passKey
25
     * @param string $forwrdr
26
     */
27
    public function __construct($awbNo = null, $passKey = null, $forwrdr = null)
28
    {
29
        $this->awbNo = $awbNo;
30
        $this->passKey = $passKey;
31
        $this->forwrdr = $forwrdr;
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\getPDFBr
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\getPDFBr
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 getForwrdr()
78
    {
79
        return $this->forwrdr;
80
    }
81
82
    /**
83
     * @param string $forwrdr
84
     *
85
     * @return \SmsaSDK\Methods\getPDFBr
86
     */
87
    public function setForwrdr($forwrdr)
88
    {
89
        $this->forwrdr = $forwrdr;
90
91
        return $this;
92
    }
93
}
94