Passed
Pull Request — master (#28)
by Manuel
02:43
created

TransactionReference   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 36
rs 10
c 0
b 0
f 0
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getTransactionId() 0 3 1
A getOrderId() 0 3 1
A setOrderId() 0 5 1
A setTransactionId() 0 5 1
1
<?php declare(strict_types=1);
2
3
namespace Ticketpark\SaferpayJson\Request\Container;
4
5
use JMS\Serializer\Annotation\SerializedName;
6
7
final class TransactionReference
8
{
9
    /**
10
     * @var string|null
11
     * @SerializedName("TransactionId")
12
     */
13
    private $transactionId;
14
15
    /**
16
     * @var string|null
17
     * @SerializedName("OrderId")
18
     */
19
    private $orderId;
20
21
    public function getTransactionId(): ?string
22
    {
23
        return $this->transactionId;
24
    }
25
26
    public function setTransactionId(?string $transactionId): self
27
    {
28
        $this->transactionId = $transactionId;
29
30
        return $this;
31
    }
32
33
    public function getOrderId(): ?string
34
    {
35
        return $this->orderId;
36
    }
37
38
    public function setOrderId(?string $orderId): self
39
    {
40
        $this->orderId = $orderId;
41
42
        return $this;
43
    }
44
}
45