| Total Complexity | 5 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 70% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class DomainFamilyBankTransactionCode |
||
| 8 | { |
||
| 9 | private string $code; |
||
| 10 | |||
| 11 | private string $subFamilyCode; |
||
| 12 | |||
| 13 | public function __construct(string $code, string $subFamilyCode) |
||
| 14 | { |
||
| 15 | $this->code = $code; |
||
| 16 | $this->subFamilyCode = $subFamilyCode; |
||
| 17 | } |
||
| 18 | |||
| 19 | 18 | public function getCode(): string |
|
| 20 | { |
||
| 21 | 18 | return $this->code; |
|
| 22 | 18 | } |
|
| 23 | 18 | ||
| 24 | public function setCode(string $code): void |
||
| 25 | 1 | { |
|
| 26 | $this->code = $code; |
||
| 27 | 1 | } |
|
| 28 | |||
| 29 | public function getSubFamilyCode(): string |
||
| 32 | } |
||
| 33 | |||
| 34 | public function setSubFamilyCode(string $issuer): void |
||
| 37 | 1 | } |
|
| 38 | } |
||
| 39 |