Conditions | 3 |
Paths | 3 |
Total Lines | 18 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
50 | public function __construct($payments) |
||
51 | { |
||
52 | foreach ($payments as $counter => $payment) { |
||
53 | if ($counter === 0) { |
||
54 | $this->monetaryDetails = new MonetaryDetails( |
||
55 | $payment->amount, |
||
56 | $payment->currency, |
||
57 | $payment->type |
||
58 | ); |
||
59 | } else { |
||
60 | $this->otherMonetaryDetails[] = new MonetaryDetails( |
||
61 | $payment->amount, |
||
62 | $payment->currency, |
||
63 | $payment->type |
||
64 | ); |
||
65 | } |
||
66 | } |
||
67 | } |
||
68 | } |
||
69 |