Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public static function fromArray(array $array): self |
||
18 | { |
||
19 | return new self( |
||
20 | walletFiatCurrency: (string) $array['wallet_fiat_currency'], |
||
21 | walletFiatAmount: (float) $array['wallet_fiat_amount'], |
||
22 | walletFiatRate: (float) $array['wallet_fiat_rate'], |
||
23 | walletBtcRate: (float) $array['wallet_btc_rate'], |
||
24 | ); |
||
27 |