Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function convertMangoPayWalletToDTO(MangoWallet $mangoWallet) |
||
33 | { |
||
34 | $walletDto = new Wallet(); |
||
35 | $walletDto->setTag($mangoWallet->Tag); |
||
36 | $walletDto->setOwenerIds($mangoWallet->Owners); |
||
37 | $walletDto->setDescription($mangoWallet->Description); |
||
38 | $walletDto->setCurrency($mangoWallet->Currency); |
||
39 | $walletDto->setId($mangoWallet->Id); |
||
40 | $walletDto->setBalance($mangoWallet->Balance->Amount); |
||
41 | return $walletDto; |
||
42 | } |
||
43 | } |
||
44 |