BankAccount::getBic()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Ticketpark\SaferpayJson\Response\Container;
6
7
use JMS\Serializer\Annotation\SerializedName;
8
use JMS\Serializer\Annotation\Type;
9
10
final class BankAccount
11
{
12
    /**
13
     * @var string|null
14
     * @SerializedName("Iban")
15
     * @Type("string")
16
     */
17
    private $iban;
18
19
    /**
20
     * @var string|null
21
     * @SerializedName("HolderName")
22
     * @Type("string")
23
     */
24
    private $holderName;
25
26
    /**
27
     * @var string|null
28
     * @SerializedName("BIC")
29
     * @Type("string")
30
     */
31
    private $bic;
32
33
    /**
34
     * @var string|null
35
     * @SerializedName("BankName")
36
     * @Type("string")
37
     */
38
    private $bankName;
39
40
    /**
41
     * @var string|null
42
     * @SerializedName("CountryCode")
43
     * @Type("string")
44
     */
45
    private $countryCode;
46
47
    public function getIban(): ?string
48
    {
49
        return $this->iban;
50
    }
51
52
    public function getHolderName(): ?string
53
    {
54
        return $this->holderName;
55
    }
56
57
    public function getBic(): ?string
58
    {
59
        return $this->bic;
60
    }
61
62
    public function getBankName(): ?string
63
    {
64
        return $this->bankName;
65
    }
66
67
    public function getCountryCode(): ?string
68
    {
69
        return $this->countryCode;
70
    }
71
}
72