Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 60% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | trait HasPaymentPreferences |
||
8 | { |
||
9 | protected PaymentPreferences $paymentPreferences; |
||
10 | |||
11 | public function getPaymentPreferences(): PaymentPreferences |
||
12 | { |
||
13 | return $this->paymentPreferences; |
||
14 | } |
||
15 | |||
16 | 1 | public function setPaymentPreferences(PaymentPreferences $paymentPreferences): self |
|
21 | } |
||
22 | } |
||
23 |