Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
20 | public function transform(Discount $discount) |
||
21 | { |
||
22 | return array_filter([ |
||
23 | '$percentage_off' => $discount->getPercentage()->getPercent(), |
||
24 | '$amount' => $discount->getAmount()->getMicros(), |
||
25 | '$currency_code' => $discount->getAmount()->getCurrency()->getCode(), |
||
26 | '$minimum_purchase_amount' => $discount->getMinimumPurchaseAmount()->getMicros() |
||
27 | ]); |
||
28 | } |
||
29 | } |
||
30 |