Total Complexity | 10 |
Total Lines | 53 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class PaymentMethod |
||
6 | { |
||
7 | private ?string $payerSelected; |
||
8 | private ?string $payeePreferred; |
||
9 | private ?string $standardEntryClassCode; |
||
10 | |||
11 | public function getPayerSelected(): ?string |
||
12 | { |
||
13 | return $this->payerSelected; |
||
14 | } |
||
15 | |||
16 | public function setPayerSelected(?string $payerSelected): void |
||
17 | { |
||
18 | $this->payerSelected = $payerSelected; |
||
19 | } |
||
20 | |||
21 | public function getPayeePreferred(): ?string |
||
24 | } |
||
25 | |||
26 | public function setPayeePreferred(?string $payeePreferred): void |
||
29 | } |
||
30 | |||
31 | public function getStandardEntryClassCode(): ?string |
||
34 | } |
||
35 | |||
36 | public function setStandardEntryClassCode(?string $standardEntryClassCode): void |
||
37 | { |
||
38 | $this->standardEntryClassCode = $standardEntryClassCode; |
||
39 | } |
||
40 | |||
41 | public function toArray(): array |
||
58 | } |
||
59 | } |
||
60 |