Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function setData($data) |
||
17 | { |
||
18 | $this->id = $data['id']; |
||
19 | $this->type = $data['type']; |
||
20 | $this->currency = $data['attributes']['currency']; |
||
21 | $this->status = $data['attributes']['status']; |
||
22 | $this->amount = number_format($data['attributes']['amount'] / 100, 2); |
||
23 | $this->redirect = $data['attributes']['redirect']; |
||
24 | $this->source_type = $data['attributes']['type']; |
||
25 | $this->created_at = $data['attributes']['created_at']; |
||
26 | |||
27 | return $this; |
||
28 | } |
||
29 | } |
||
30 |