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.
Completed
Push — 1.x ( f2247a...73fe3f )
by Jakub
04:00
created

TransactionLog::getRequestId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace zaporylie\Vipps\Model\Payment;
4
5
use JMS\Serializer\Annotation as Serializer;
6
7
/**
8
 * Class TransactionLog
9
 *
10
 * @package Vipps\Model\Payment
11
 */
12
class TransactionLog
13
{
14
15
    /**
16
     * @var \DateTimeInterface
17
     * @Serializer\Type("DateTime<'Y-m-d\TH:i:s.u\Z'>")
18
     */
19
    protected $timeStamp;
20
21
    /**
22
     * @var string
23
     * @Serializer\Type("string")
24
     */
25
    protected $operation;
26
27
    /**
28
     * @var int
29
     * @Serializer\Type("integer")
30
     */
31
    protected $amount;
32
33
    /**
34
     * @var string
35
     * @Serializer\Type("string")
36
     */
37
    protected $transactionId;
38
39
    /**
40
     * @var string
41
     * @Serializer\Type("string")
42
     */
43
    protected $transactionText;
44
45
    /**
46
     * @var string
47
     * @Serializer\Type("string")
48
     */
49
    protected $requestId;
50
51
    /**
52
     * Gets timeStamp value.
53
     *
54
     * @return \DateTimeInterface
55
     */
56
    public function getTimeStamp()
57
    {
58
        return $this->timeStamp;
59
    }
60
61
    /**
62
     * Sets timeStamp variable.
63
     *
64
     * @param \DateTimeInterface $timeStamp
65
     *
66
     * @return $this
67
     */
68
    public function setTimeStamp(\DateTimeInterface $timeStamp)
69
    {
70
        $this->timeStamp = $timeStamp;
71
        return $this;
72
    }
73
74
    /**
75
     * Gets operation value.
76
     *
77
     * @return string
78
     */
79
    public function getOperation()
80
    {
81
        return $this->operation;
82
    }
83
84
    /**
85
     * Sets operation variable.
86
     *
87
     * @param string $operation
88
     *
89
     * @return $this
90
     */
91
    public function setOperation($operation)
92
    {
93
        $this->operation = $operation;
94
        return $this;
95
    }
96
97
    /**
98
     * Gets amount value.
99
     *
100
     * @return int
101
     */
102
    public function getAmount()
103
    {
104
        return $this->amount;
105
    }
106
107
    /**
108
     * Sets amount variable.
109
     *
110
     * @param int $amount
111
     *
112
     * @return $this
113
     */
114
    public function setAmount($amount)
115
    {
116
        $this->amount = $amount;
117
        return $this;
118
    }
119
120
    /**
121
     * Gets transactionId value.
122
     *
123
     * @return string
124
     */
125
    public function getTransactionId()
126
    {
127
        return $this->transactionId;
128
    }
129
130
    /**
131
     * Sets transactionId variable.
132
     *
133
     * @param string $transactionId
134
     *
135
     * @return $this
136
     */
137
    public function setTransactionId($transactionId)
138
    {
139
        $this->transactionId = $transactionId;
140
        return $this;
141
    }
142
143
    /**
144
     * Gets transactionText value.
145
     *
146
     * @return string
147
     */
148
    public function getTransactionText()
149
    {
150
        return $this->transactionText;
151
    }
152
153
    /**
154
     * Sets transactionText variable.
155
     *
156
     * @param string $transactionText
157
     *
158
     * @return $this
159
     */
160
    public function setTransactionText($transactionText)
161
    {
162
        $this->transactionText = $transactionText;
163
        return $this;
164
    }
165
166
    /**
167
     * Gets requestId value.
168
     *
169
     * @return string
170
     */
171
    public function getRequestId()
172
    {
173
        return $this->requestId;
174
    }
175
176
    /**
177
     * Sets requestId variable.
178
     *
179
     * @param string $requestId
180
     *
181
     * @return $this
182
     */
183
    public function setRequestId($requestId)
184
    {
185
        $this->requestId = $requestId;
186
        return $this;
187
    }
188
}
189