Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function create(OrderInterface $cart) |
||
14 | { |
||
15 | $totalsView = new TotalsView(); |
||
16 | |||
17 | $totalsView->promotion = $cart->getOrderPromotionTotal(); |
||
18 | $totalsView->items = $cart->getItemsTotal(); |
||
19 | $totalsView->shipping = $cart->getShippingTotal(); |
||
20 | $totalsView->taxes = $cart->getTaxTotal(); |
||
21 | |||
22 | return $totalsView; |
||
23 | } |
||
24 | } |
||
25 |