| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function transform(Promotion $promotion) |
||
| 25 | { |
||
| 26 | return array_filter([ |
||
| 27 | '$promotion_id' => $promotion->getId(), |
||
| 28 | '$status' => $promotion->getStatus(), |
||
| 29 | '$failure_reason' => $promotion->getFailureReason(), |
||
| 30 | '$description' => $promotion->getDescription(), |
||
| 31 | '$referrer_user_id' => $promotion->getReferrerUserId(), |
||
| 32 | '$discount' => $this->discount($promotion->getDiscount()), |
||
| 33 | '$credit_point' => $this->creditPoint($promotion->getCreditPoint()) |
||
| 34 | ]); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |