| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | public function toArray($request) |
||
| 16 | { |
||
| 17 | return [ |
||
| 18 | 'id' => $this->id, |
||
|
|
|||
| 19 | 'active' => $this->active, |
||
| 20 | 'long_url' => $this->long_url, |
||
| 21 | 'path' => $this->path, |
||
| 22 | 'total_clicks' => $this->total_clicks, |
||
| 23 | 'user_id' => $this->user_id, |
||
| 24 | 'created_at' => $this->created_at, |
||
| 25 | 'updated_at' => $this->updated_at, |
||
| 26 | ]; |
||
| 29 |