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

saphOrderReady   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 saphOrderReady
6
{
7
    /**
8
     * @var string
9
     */
10
    protected $passKey = null;
11
12
    /**
13
     * @var string
14
     */
15
    protected $refId = null;
16
17
    /**
18
     * @var ArrayOfOrderLineItem
19
     */
20
    protected $orderLineItems = null;
21
22
    /**
23
     * @param string               $passKey
24
     * @param string               $refId
25
     * @param ArrayOfOrderLineItem $orderLineItems
26
     */
27
    public function __construct($passKey = null, $refId = null, $orderLineItems = null)
28
    {
29
        $this->passKey = $passKey;
30
        $this->refId = $refId;
31
        $this->orderLineItems = $orderLineItems;
32
    }
33
34
    /**
35
     * @return string
36
     */
37
    public function getPassKey()
38
    {
39
        return $this->passKey;
40
    }
41
42
    /**
43
     * @param string $passKey
44
     *
45
     * @return \SmsaSDK\Methods\saphOrderReady
46
     */
47
    public function setPassKey($passKey)
48
    {
49
        $this->passKey = $passKey;
50
51
        return $this;
52
    }
53
54
    /**
55
     * @return string
56
     */
57
    public function getRefId()
58
    {
59
        return $this->refId;
60
    }
61
62
    /**
63
     * @param string $refId
64
     *
65
     * @return \SmsaSDK\Methods\saphOrderReady
66
     */
67
    public function setRefId($refId)
68
    {
69
        $this->refId = $refId;
70
71
        return $this;
72
    }
73
74
    /**
75
     * @return ArrayOfOrderLineItem
76
     */
77
    public function getOrderLineItems()
78
    {
79
        return $this->orderLineItems;
80
    }
81
82
    /**
83
     * @param ArrayOfOrderLineItem $orderLineItems
84
     *
85
     * @return \SmsaSDK\Methods\saphOrderReady
86
     */
87
    public function setOrderLineItems($orderLineItems)
88
    {
89
        $this->orderLineItems = $orderLineItems;
90
91
        return $this;
92
    }
93
}
94