Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function transform(Chargeback $chargeback) |
||
22 | { |
||
23 | return array_filter([ |
||
24 | '$order_id' => $chargeback->getOrder(), |
||
25 | '$transaction_id' => $chargeback->getTransaction(), |
||
26 | '$chargeback_state' => $chargeback->getChargebackState(), |
||
27 | '$chargeback_reason' => $chargeback->getChargebackReason() |
||
28 | ]); |
||
29 | } |
||
30 | } |
||
31 |