OrganisationIdentification::getIssuer()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
ccs 1
cts 1
cp 1
crap 1
rs 10
c 1
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Genkgo\Camt\DTO;
6
7
class OrganisationIdentification extends Identification
8
{
9
    private ?string $bic = null;
10
11
    private ?string $ibei = null;
12
13
    private ?string $bei = null;
14
15
    private ?string $eangln = null;
16
17
    private ?string $chipsUniversalId = null;
18
19
    private ?string $duns = null;
20
21
    private ?string $bankPartyId = null;
22
23
    private ?string $taxId = null;
24
25
    private ?string $issuer = null;
26
27
    private ?string $otherId = null;
28
29
    private ?string $otherIssuer = null;
30
31
    private ?string $otherSchemeName = null;
32
33
    private ?string $otherType = null;
34
35
    public function getBic(): ?string
36
    {
37
        return $this->bic;
38
    }
39
40
    public function setBic(string $bic): void
41
    {
42
        $this->bic = $bic;
43
        $this->identification = $bic;
44
    }
45
46
    public function getIbei(): ?string
47
    {
48
        return $this->ibei;
49
    }
50
51
    public function setIbei(string $ibei): void
52
    {
53
        $this->ibei = $ibei;
54
        $this->identification = $ibei;
55
    }
56
57
    public function getBei(): ?string
58
    {
59
        return $this->bei;
60
    }
61
62
    public function setBei(string $bei): void
63
    {
64
        $this->bei = $bei;
65
        $this->identification = $bei;
66
    }
67
68
    public function getEangln(): ?string
69
    {
70
        return $this->eangln;
71
    }
72
73
    public function setEangln(string $eangln): void
74 3
    {
75
        $this->eangln = $eangln;
76 3
        $this->identification = $eangln;
77
    }
78
79 23
    public function getChipsUniversalId(): ?string
80
    {
81 23
        return $this->chipsUniversalId;
82 23
    }
83 23
84
    public function setChipsUniversalId(string $chipsUniversalId): void
85
    {
86
        $this->chipsUniversalId = $chipsUniversalId;
87
        $this->identification = $chipsUniversalId;
88
    }
89
90 4
    public function getDuns(): ?string
91
    {
92 4
        return $this->duns;
93 4
    }
94 4
95
    public function setDuns(string $duns): void
96
    {
97
        $this->duns = $duns;
98
        $this->identification = $duns;
99
    }
100
101 21
    public function getBankPartyId(): ?string
102
    {
103 21
        return $this->bankPartyId;
104 21
    }
105 21
106
    public function setBankPartyId(string $bankPartyId): void
107
    {
108
        $this->bankPartyId = $bankPartyId;
109
        $this->identification = $bankPartyId;
110
    }
111
112 4
    public function getTaxId(): ?string
113
    {
114 4
        return $this->taxId;
115 4
    }
116 4
117
    public function setTaxId(string $taxId): void
118
    {
119
        $this->taxId = $taxId;
120
        $this->identification = $taxId;
121
    }
122
123
    public function getOtherId(): ?string
124
    {
125
        return $this->otherId;
126
    }
127
128
    public function setOtherId(string $otherId): void
129
    {
130
        $this->otherId = $otherId;
131
        $this->identification = $otherId;
132
    }
133
134
    public function getOtherIssuer(): ?string
135
    {
136
        return $this->otherIssuer;
137
    }
138
139
    public function setOtherIssuer(string $otherIssuer): void
140
    {
141
        $this->otherIssuer = $otherIssuer;
142
    }
143
144
    public function getOtherSchemeName(): ?string
145
    {
146
        return $this->otherSchemeName;
147
    }
148
149
    public function setOtherSchemeName(string $otherSchemeName): void
150
    {
151
        $this->otherSchemeName = $otherSchemeName;
152
    }
153
154
    public function getOtherType(): ?string
155
    {
156
        return $this->otherType;
157
    }
158
159
    public function setOtherType(string $otherType): void
160
    {
161
        $this->otherType = $otherType;
162 3
    }
163
164 3
    public function getIssuer(): ?string
165
    {
166
        return $this->issuer;
167 23
    }
168
169 23
    public function setIssuer(string $issuer): void
170 23
    {
171 23
        $this->issuer = $issuer;
172
        $this->identification = $issuer;
173 3
    }
174
}
175