| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function toArray($request) |
||
| 20 | { |
||
| 21 | return [ |
||
| 22 | 'id' => $this->id, |
||
| 23 | 'card_id' => $this->id, |
||
| 24 | 'brand_id' => $this->brand_id, |
||
| 25 | 'card_number' => $this->card_number, |
||
| 26 | 'exp_year' => $this->exp_year, |
||
| 27 | 'exp_month' => $this->exp_month, |
||
| 28 | 'card_name' => $this->card_name, |
||
| 29 | 'is_active' => $this->is_active, |
||
| 30 | 'created_at' => (string) $this->created_at, |
||
| 31 | 'updated_at' => (string) $this->updated_at, |
||
| 32 | ]; |
||
| 33 | } |
||
| 34 | } |
||
| 35 |