| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 7 | class BankTransactionCode |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var ProprietaryBankTransactionCode |
||
| 11 | */ |
||
| 12 | private $proprietary; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var DomainBankTransactionCode |
||
| 16 | */ |
||
| 17 | private $domain; |
||
| 18 | |||
| 19 | public function getProprietary(): ProprietaryBankTransactionCode |
||
| 20 | { |
||
| 21 | return $this->proprietary; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function setProprietary(ProprietaryBankTransactionCode $proprietary): void |
||
| 25 | { |
||
| 26 | $this->proprietary = $proprietary; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getDomain(): DomainBankTransactionCode |
||
| 30 | { |
||
| 31 | return $this->domain; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function setDomain(DomainBankTransactionCode $domain): void |
||
| 37 | } |
||
| 38 | } |
||
| 39 |