Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2.0054 |
Changes | 0 |
1 | <?php |
||
31 | 12 | public function calculateOrder(Order $Order) |
|
32 | { |
||
33 | // OrderDetails の計算結果を Order にセットする |
||
34 | 12 | $subTotal = $Order->calculateSubTotal(); |
|
35 | 12 | $Order->setSubtotal($subTotal); |
|
36 | 12 | $total = $Order->getTotalPrice(); |
|
37 | 12 | if ($total < 0) { |
|
38 | $total = 0; |
||
39 | } |
||
40 | 12 | $Order->setTotal($total); |
|
41 | 12 | $Order->setPaymentTotal($total); |
|
42 | 12 | return $Order; |
|
43 | } |
||
44 | |||
62 |