Total Complexity | 6 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 0 |
1 | <?php |
||
7 | class OtherAccount extends Account |
||
8 | { |
||
9 | private string $identification; |
||
10 | |||
11 | private ?string $schemeName = null; |
||
12 | |||
13 | private ?string $issuer = null; |
||
14 | |||
15 | public function __construct(string $identification) |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @inheritDoc |
||
22 | */ |
||
23 | public function getIdentification(): string |
||
24 | 18 | { |
|
25 | return $this->identification; |
||
26 | 18 | } |
|
27 | 18 | ||
28 | public function setSchemeName(string $schemeName): void |
||
29 | { |
||
30 | $this->schemeName = $schemeName; |
||
31 | } |
||
32 | 3 | ||
33 | public function getSchemeName(): ?string |
||
34 | 3 | { |
|
35 | return $this->schemeName; |
||
36 | } |
||
37 | |||
38 | public function setIssuer(string $issuer): void |
||
39 | { |
||
40 | $this->issuer = $issuer; |
||
41 | } |
||
42 | |||
43 | public function getIssuer(): ?string |
||
46 | } |
||
47 | } |
||
48 |