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

OrderLineItem   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 81
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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